grantleetheme: init at 17.04.0

This commit is contained in:
Thomas Tuegel 2017-05-09 18:33:55 -05:00
parent 9e4cf7e36b
commit 2dfa7a0af2
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59
2 changed files with 19 additions and 0 deletions

View File

@ -60,6 +60,7 @@ let
dolphin-plugins = callPackage ./dolphin-plugins.nix {};
ffmpegthumbs = callPackage ./ffmpegthumbs.nix { };
filelight = callPackage ./filelight.nix {};
grantleetheme = callPackage ./grantleetheme.nix {};
gwenview = callPackage ./gwenview.nix {};
k3b = callPackage ./k3b.nix {};
kate = callPackage ./kate.nix {};

View File

@ -0,0 +1,18 @@
{
mkDerivation, copyPathsToStore, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
grantlee5, ki18n, kiconthemes, knewstuff, kservice, kxmlgui, qtbase,
}:
mkDerivation {
name = "grantleetheme";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
grantlee5 ki18n kiconthemes knewstuff kservice kxmlgui qtbase
];
output = [ "out" "dev" ];
}