nixpkgs/pkgs/applications/kde/knights.nix

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

35 lines
602 B
Nix
Raw Normal View History

2020-08-21 08:29:47 +00:00
{
mkDerivation,
lib,
extra-cmake-modules,
kdoctools,
ki18n,
kio,
kplotting,
plasma-framework,
libkdegames,
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "knights";
2020-08-21 08:29:47 +00:00
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.knights";
description = "Chess game";
mainProgram = "knights";
2020-08-21 08:29:47 +00:00
maintainers = with maintainers; [ freezeboy ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
libkdegames
plasma-framework
kplotting
kdoctools
ki18n
kio
];
}