18 lines
318 B
Nix
18 lines
318 B
Nix
|
{ 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
|
||
|
];
|
||
|
}
|