3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix

16 lines
511 B
Nix
Raw Normal View History

2016-04-21 16:32:21 +01:00
{ kdeFramework, lib, copyPathsToStore
, extra-cmake-modules, makeQtWrapper
, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg
}:
kdeFramework {
name = "kiconthemes";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-04-21 16:32:21 +01:00
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
propagatedBuildInputs = [ breeze-icons kconfigwidgets ki18n kitemviews qtsvg ];
2016-04-21 16:32:21 +01:00
postInstall = ''
wrapQtProgram "$out/bin/kiconfinder5"
'';
}