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

21 lines
579 B
Nix
Raw Normal View History

2017-05-09 23:33:55 +00:00
{
mkDerivation, lib, kdepimTeam,
2017-05-09 23:33:55 +00:00
extra-cmake-modules, kdoctools,
grantlee, ki18n, kiconthemes, knewstuff, kservice, kxmlgui, qtbase,
2017-05-09 23:33:55 +00:00
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "grantleetheme";
2017-05-09 23:33:55 +00:00
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
2020-12-05 19:29:23 +00:00
broken = lib.versionOlder qtbase.version "5.13.0";
2017-05-09 23:33:55 +00:00
};
output = [ "out" "dev" ];
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
}