44211b10b2
Necessary to render icons in applications that don't already depend on this Qt module.
13 lines
239 B
Nix
13 lines
239 B
Nix
{ kdeFramework
|
|
, extra-cmake-modules
|
|
, qtsvg
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "breeze-icons";
|
|
outputs = [ "out" ];
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [ qtsvg ];
|
|
propagatedUserEnvPkgs = [ qtsvg.out ];
|
|
}
|