From 7e69895f379af0f76225927475b5e5e8e5aeadcd Mon Sep 17 00:00:00 2001 From: freezeboy Date: Fri, 21 Aug 2020 10:29:47 +0200 Subject: knights: init at 20.04.3 --- pkgs/applications/kde/knights.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pkgs/applications/kde/knights.nix (limited to 'pkgs/applications/kde/knights.nix') diff --git a/pkgs/applications/kde/knights.nix b/pkgs/applications/kde/knights.nix new file mode 100644 index 0000000000000..ee5c37e2e9488 --- /dev/null +++ b/pkgs/applications/kde/knights.nix @@ -0,0 +1,23 @@ +{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, kplotting, plasma-framework, libkdegames }: + +mkDerivation { + name = "knights"; + meta = with lib; { + homepage = "https://kde.org/applications/en/games/org.kde.knights"; + description = "KNights is a chess game"; + maintainers = with maintainers; [ freezeboy ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + }; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + libkdegames + plasma-framework + kplotting + kdoctools + ki18n + kio + ]; +} -- cgit 1.4.1