summary refs log tree commit diff
path: root/pkgs/applications/kde
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-08-21 10:41:47 +0200
committerfreezeboy <freezeboy@users.noreply.github.com>2020-08-21 10:41:47 +0200
commitcd235e3a1591cf3048f600f70b5673ebc6c534ec (patch)
treeabc7559abb255af861a1629bd1dfe2074392d380 /pkgs/applications/kde
parentf33b52669ee1df9edb3ea2e08879040de9b4a455 (diff)
downloadnixpkgs-cd235e3a1591cf3048f600f70b5673ebc6c534ec.tar
nixpkgs-cd235e3a1591cf3048f600f70b5673ebc6c534ec.tar.gz
nixpkgs-cd235e3a1591cf3048f600f70b5673ebc6c534ec.tar.bz2
nixpkgs-cd235e3a1591cf3048f600f70b5673ebc6c534ec.tar.lz
nixpkgs-cd235e3a1591cf3048f600f70b5673ebc6c534ec.tar.xz
nixpkgs-cd235e3a1591cf3048f600f70b5673ebc6c534ec.tar.zst
nixpkgs-cd235e3a1591cf3048f600f70b5673ebc6c534ec.zip
kshisen: 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/kshisen.nix22
2 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix
index 041108a9c5d..bf11cfabcf0 100644
--- a/pkgs/applications/kde/default.nix
+++ b/pkgs/applications/kde/default.nix
@@ -171,6 +171,7 @@ let
       krdc = callPackage ./krdc.nix {};
       krfb = callPackage ./krfb.nix {};
       kruler = callPackage ./kruler.nix {};
+      kshisen = callPackage ./kshisen.nix {};
       kspaceduel = callPackage ./kspaceduel.nix {};
       ksudoku = callPackage ./ksudoku.nix {};
       ksystemlog = callPackage ./ksystemlog.nix {};
diff --git a/pkgs/applications/kde/kshisen.nix b/pkgs/applications/kde/kshisen.nix
new file mode 100644
index 00000000000..7909ed8b2a3
--- /dev/null
+++ b/pkgs/applications/kde/kshisen.nix
@@ -0,0 +1,22 @@
+{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames, libkmahjongg }:
+
+mkDerivation {
+  name = "kshisen";
+  meta = with lib; {
+    homepage = "https://kde.org/applications/en/games/org.kde.kshisen";
+    description = "KShisen is a solitaire-like game played using the standard set of Mahjong tiles";
+    maintainers = with maintainers; [ freezeboy ];
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
+  };
+  nativeBuildInputs = [
+    extra-cmake-modules
+  ];
+  buildInputs = [
+    libkdegames
+    libkmahjongg
+    kdoctools
+    ki18n
+    kio
+  ];
+}