about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/granatier.nix
blob: b4aa2168e0d1daee24e79c2516443023e79b009a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ mkDerivation, lib
, libkdegames, extra-cmake-modules
, kdeclarative, knewstuff
}:

mkDerivation {
  pname = "granatier";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/games/org.kde.granatier";
    description = "Clone of the classic Bomberman game";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    kdeclarative
    knewstuff
    libkdegames
  ];
}