Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / kbounce.nix
blobd96c0f7f82734024a72094ff5a674d5ed55a441b
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     maintainers = with maintainers; [ freezeboy ];
9     license = licenses.gpl2Plus;
10     platforms = platforms.linux;
11   };
12   nativeBuildInputs = [
13     extra-cmake-modules
14   ];
15   buildInputs = [
16     libkdegames
17     kconfig
18     kcrash
19     kio
20     ki18n
21   ];