biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / kde / kbounce.nix
blobf6f6ad43829b552a613c1a6edde88defa7f8bda3
1 { mkDerivation, lib, extra-cmake-modules, libkdegames, kconfig, kcrash, kio, ki18n }:
3 mkDerivation {
4   pname = "kbounce";
5   meta = with lib; {
6     homepage = "https://kde.org/applications/en/games/org.kde.kbounce";
7     description = "Single player arcade game with the elements of puzzle";
8     mainProgram = "kbounce";
9     maintainers = with maintainers; [ freezeboy ];
10     license = licenses.gpl2Plus;
11     platforms = platforms.linux;
12   };
13   nativeBuildInputs = [
14     extra-cmake-modules
15   ];
16   buildInputs = [
17     libkdegames
18     kconfig
19     kcrash
20     kio
21     ki18n
22   ];