2017-05-10 00:33:55 +01:00
|
|
|
{
|
|
|
|
mkDerivation, copyPathsToStore, lib, kdepimTeam,
|
|
|
|
extra-cmake-modules, kdoctools,
|
2018-07-17 21:11:16 +01:00
|
|
|
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;
|
|
|
|
};
|
2017-04-18 08:40:22 +01:00
|
|
|
output = [ "out" "dev" ];
|
2017-05-12 17:00:47 +01:00
|
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
2017-05-10 00:33:55 +01:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
|
|
buildInputs = [
|
2018-07-17 21:11:16 +01:00
|
|
|
grantlee ki18n kiconthemes knewstuff kservice kxmlgui qtbase
|
2017-05-10 00:33:55 +01:00
|
|
|
];
|
2018-07-17 21:11:16 +01:00
|
|
|
propagatedBuildInputs = [ grantlee kiconthemes knewstuff ];
|
2017-05-10 00:33:55 +01:00
|
|
|
}
|