nixpkgs/pkgs/applications/kde/grantleetheme/default.nix

21 lines
608 B
Nix
Raw Normal View History

2017-05-09 23:33:55 +00:00
{
mkDerivation, copyPathsToStore, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
grantlee, ki18n, kiconthemes, knewstuff, kservice, kxmlgui, qtbase,
2017-05-09 23:33:55 +00:00
}:
mkDerivation {
name = "grantleetheme";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
output = [ "out" "dev" ];
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
2017-05-09 23:33:55 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
grantlee ki18n kiconthemes knewstuff kservice kxmlgui qtbase
2017-05-09 23:33:55 +00:00
];
propagatedBuildInputs = [ grantlee kiconthemes knewstuff ];
2017-05-09 23:33:55 +00:00
}