about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-04-21 01:46:40 -0500
committerGitHub <noreply@github.com>2018-04-21 01:46:40 -0500
commitf55d6bbefe3f5c4eb8196969a063c37c0e3e1b8c (patch)
tree581718bbb90fd40165f254330681e12530017702 /pkgs/games
parentf22ce37e1fddbc2c133607fdc611ab3fe40e7dd8 (diff)
parent4a78942c7586796f8ca6ebcde360d01452f0b246 (diff)
downloadnixlib-f55d6bbefe3f5c4eb8196969a063c37c0e3e1b8c.tar
nixlib-f55d6bbefe3f5c4eb8196969a063c37c0e3e1b8c.tar.gz
nixlib-f55d6bbefe3f5c4eb8196969a063c37c0e3e1b8c.tar.bz2
nixlib-f55d6bbefe3f5c4eb8196969a063c37c0e3e1b8c.tar.lz
nixlib-f55d6bbefe3f5c4eb8196969a063c37c0e3e1b8c.tar.xz
nixlib-f55d6bbefe3f5c4eb8196969a063c37c0e3e1b8c.tar.zst
nixlib-f55d6bbefe3f5c4eb8196969a063c37c0e3e1b8c.zip
Merge pull request #39275 from ciil/gnushogi
gnushogi: init at 1.4.2
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/gnushogi/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/games/gnushogi/default.nix b/pkgs/games/gnushogi/default.nix
new file mode 100644
index 000000000000..e85674550308
--- /dev/null
+++ b/pkgs/games/gnushogi/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, zlib }:
+
+stdenv.mkDerivation rec {
+  name = "gnushogi-${version}";
+  version = "1.4.2";
+  buildInputs = [ zlib ];
+
+  src = fetchurl {
+    url = "mirror://gnu/gnushogi/${name}.tar.gz";
+    sha256 = "0a9bsl2nbnb138lq0h14jfc5xvz7hpb2bcsj4mjn6g1hcsl4ik0y";
+  };
+
+  meta = with stdenv.lib; {
+    description = "GNU implementation of Shogi, also known as Japanese Chess";
+    homepage = https://www.gnu.org/software/gnushogi/;
+    license = licenses.gpl3;
+    maintainers = [ maintainers.ciil ];
+    platforms = platforms.unix;
+  };
+}