nixpkgs/pkgs/development/libraries/kde-frameworks/kiconthemes/default.nix

13 lines
402 B
Nix
Raw Normal View History

2016-04-21 15:32:21 +00:00
{ kdeFramework, lib, copyPathsToStore
2016-07-30 14:36:52 +00:00
, ecm
2016-07-10 09:36:14 +00:00
, karchive, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg
2016-04-21 15:32:21 +00:00
}:
kdeFramework {
name = "kiconthemes";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-04-21 15:32:21 +00:00
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
2016-07-30 14:36:52 +00:00
nativeBuildInputs = [ ecm ];
2016-07-10 09:36:14 +00:00
propagatedBuildInputs = [ breeze-icons kconfigwidgets karchive ki18n kitemviews qtsvg ];
2016-04-21 15:32:21 +00:00
}