summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/kde
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-07-26 01:09:14 +0200
committerfreezeboy <freezeboy@users.noreply.github.com>2020-08-21 10:10:12 +0200
commitd166d7bc6fc0b91030898283415c9d8bcff64909 (patch)
treeff680d5106574d344af111beb76beeef3a3e7fb4 /pkgs/applications/kde
parent05ec46b114f789500feb8b730246fc44a9ef44e1 (diff)
kreversi: init at 20.04.3
Diffstat (limited to 'pkgs/applications/kde')
-rw-r--r--pkgs/applications/kde/default.nix1
-rw-r--r--pkgs/applications/kde/kreversi.nix19
2 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix
index ddb1f2f33a80..6b37d6f45dfe 100644
--- a/pkgs/applications/kde/default.nix
+++ b/pkgs/applications/kde/default.nix
@@ -162,6 +162,7 @@ let
ksquares = callPackage ./ksquares.nix {};
kqtquickcharts = callPackage ./kqtquickcharts.nix {};
kpkpass = callPackage ./kpkpass.nix {};
+ kreversi = callPackage ./kreversi.nix {};
krdc = callPackage ./krdc.nix {};
krfb = callPackage ./krfb.nix {};
kruler = callPackage ./kruler.nix {};
diff --git a/pkgs/applications/kde/kreversi.nix b/pkgs/applications/kde/kreversi.nix
new file mode 100644
index 000000000000..77ac4f05c8a8
--- /dev/null
+++ b/pkgs/applications/kde/kreversi.nix
@@ -0,0 +1,19 @@
+{ mkDerivation, lib, extra-cmake-modules, libkdegames, kdeclarative }:
+
+mkDerivation {
+ name = "kreversi";
+ meta = with lib; {
+ homepage = "https://kde.org/applications/en/games/org.kde.kreversi";
+ description = "KReversi is a simple one player strategy game played against the computer";
+ maintainers = with maintainers; [ freezeboy ];
+ license = licenses.gpl2Plus;
+ platforms = platforms.linux;
+ };
+ nativeBuildInputs = [
+ extra-cmake-modules
+ ];
+ buildInputs = [
+ kdeclarative
+ libkdegames
+ ];
+}