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

20 lines
523 B
Nix
Raw Normal View History

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