nixpkgs/pkgs/applications/kde/knetwalk.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
551 B
Nix
Raw Normal View History

2020-07-25 22:18:49 +00:00
{
mkDerivation,
lib,
extra-cmake-modules,
kdoctools,
ki18n,
kio,
libkdegames,
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "knetwalk";
2020-07-25 22:18:49 +00:00
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.knetwalk";
description = "Single player logic game";
mainProgram = "knetwalk";
2020-07-25 22:18:49 +00:00
maintainers = with maintainers; [ freezeboy ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
libkdegames
kdoctools
ki18n
kio
];
}