nixpkgs/pkgs/applications/kde/granatier.nix
2020-07-10 16:41:10 +02:00

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
];
}