nixpkgs/pkgs/desktops/kde-5/frameworks/breeze-icons.nix
Thomas Tuegel 44211b10b2 kde5.breeze-icons: propagate Qt SVG plugin
Necessary to render icons in applications that don't already depend on
this Qt module.
2016-07-27 20:50:24 -05:00

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 ];
}