biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / kde / knetwalk.nix
bloba74b18d184d7ce39221ee7711fee4d84e9de2c5d
1 { mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames }:
3 mkDerivation {
4   pname = "knetwalk";
5   meta = with lib; {
6     homepage = "https://kde.org/applications/en/games/org.kde.knetwalk";
7     description = "Single player logic game";
8     mainProgram = "knetwalk";
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     kdoctools
19     ki18n
20     kio
21   ];