fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / applications / kde / kbounce.nix
blob531f703489f90a063a26ec96b87bc7f1b494c0a8
2   mkDerivation,
3   lib,
4   extra-cmake-modules,
5   libkdegames,
6   kconfig,
7   kcrash,
8   kio,
9   ki18n,
12 mkDerivation {
13   pname = "kbounce";
14   meta = with lib; {
15     homepage = "https://kde.org/applications/en/games/org.kde.kbounce";
16     description = "Single player arcade game with the elements of puzzle";
17     mainProgram = "kbounce";
18     maintainers = with maintainers; [ freezeboy ];
19     license = licenses.gpl2Plus;
20     platforms = platforms.linux;
21   };
22   nativeBuildInputs = [
23     extra-cmake-modules
24   ];
25   buildInputs = [
26     libkdegames
27     kconfig
28     kcrash
29     kio
30     ki18n
31   ];