granatier: init at 19.12.3

This commit is contained in:
freezeboy 2020-07-10 16:40:15 +02:00
parent 0416089dc6
commit 49d8c70113
2 changed files with 18 additions and 0 deletions

View file

@ -82,6 +82,7 @@ let
eventviews = callPackage ./eventviews.nix {};
ffmpegthumbs = callPackage ./ffmpegthumbs.nix { };
filelight = callPackage ./filelight.nix {};
granatier = callPackage ./granatier.nix {};
grantleetheme = callPackage ./grantleetheme {};
gwenview = callPackage ./gwenview.nix {};
incidenceeditor = callPackage ./incidenceeditor.nix {};

View file

@ -0,0 +1,17 @@
{ mkDerivation, lib
, libkdegames, extra-cmake-modules
, kdeclarative, knewstuff
}:
mkDerivation {
name = "granatier";
meta = with lib; { maintainers = with maintainers; [ freezeboy ]; };
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
kdeclarative
knewstuff
libkdegames
];
}