summary refs log tree commit diff
path: root/pkgs/applications/kde/ksudoku.nix
diff options
context:
space:
mode:
authorBignaux Ronan <ronan@aimao.org>2019-12-25 21:27:18 +0100
committerBignaux Ronan <ronan@aimao.org>2019-12-25 21:27:18 +0100
commitb09fa30f6608e2f6ad174f3ca483d8e782f36b4e (patch)
treefd08f1e19f3122d3086183ad7f168665c3ce1942 /pkgs/applications/kde/ksudoku.nix
parent2b725bbb69ffeec69b663959ba15265d65e3ee93 (diff)
downloadnixpkgs-b09fa30f6608e2f6ad174f3ca483d8e782f36b4e.tar
nixpkgs-b09fa30f6608e2f6ad174f3ca483d8e782f36b4e.tar.gz
nixpkgs-b09fa30f6608e2f6ad174f3ca483d8e782f36b4e.tar.bz2
nixpkgs-b09fa30f6608e2f6ad174f3ca483d8e782f36b4e.tar.lz
nixpkgs-b09fa30f6608e2f6ad174f3ca483d8e782f36b4e.tar.xz
nixpkgs-b09fa30f6608e2f6ad174f3ca483d8e782f36b4e.tar.zst
nixpkgs-b09fa30f6608e2f6ad174f3ca483d8e782f36b4e.zip
ksudoku: init at 19.08.3
Diffstat (limited to 'pkgs/applications/kde/ksudoku.nix')
-rw-r--r--pkgs/applications/kde/ksudoku.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/applications/kde/ksudoku.nix b/pkgs/applications/kde/ksudoku.nix
new file mode 100644
index 00000000000..3641c1b3332
--- /dev/null
+++ b/pkgs/applications/kde/ksudoku.nix
@@ -0,0 +1,18 @@
+{ lib
+, mkDerivation
+, extra-cmake-modules
+, libGLU
+, kdoctools
+, kdeclarative
+, libkdegames
+}:
+
+mkDerivation {
+  name = "ksudoku";
+  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+  buildInputs = [ libGLU kdeclarative libkdegames ];
+  meta = {
+    license = with lib.licenses; [ gpl2 ];
+    maintainers = with lib.maintainers; [ genesis ];
+  };
+}