python312Packages.powerfox: init at 1.1.0 (#371207)
[NixPkgs.git] / pkgs / applications / kde / kdiamond.nix
blob8415deb26180f0c229edc376b5232e9c240c96d9
2   mkDerivation,
3   lib,
4   extra-cmake-modules,
5   kdoctools,
6   ki18n,
7   kio,
8   libkdegames,
9   kconfig,
10   knotifyconfig,
13 mkDerivation {
14   pname = "kdiamond";
15   meta = with lib; {
16     homepage = "https://kde.org/applications/en/games/org.kde.kdiamond";
17     description = "Single player puzzle game";
18     mainProgram = "kdiamond";
19     maintainers = with maintainers; [ freezeboy ];
20     license = licenses.gpl2Plus;
21     platforms = platforms.linux;
22   };
23   nativeBuildInputs = [
24     extra-cmake-modules
25   ];
26   buildInputs = [
27     libkdegames
28     knotifyconfig
29     kconfig
30     kdoctools
31     ki18n
32     kio
33   ];