aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/kde/kbounce.nix
blob: a24d215518076fc2ae4c55f8876bc448b2cfca23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ mkDerivation, lib, extra-cmake-modules, libkdegames, kconfig, kcrash, kio, ki18n }:

mkDerivation {
  name = "kbounce";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/games/org.kde.kbounce";
    description = "KBounce is a single player arcade game with the elements of puzzle";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    libkdegames
    kconfig
    kcrash
    kio
    ki18n
  ];
}