about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/gnuchess/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/gnuchess/default.nix')
-rw-r--r--nixpkgs/pkgs/games/gnuchess/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/games/gnuchess/default.nix b/nixpkgs/pkgs/games/gnuchess/default.nix
new file mode 100644
index 000000000000..62c5ee803047
--- /dev/null
+++ b/nixpkgs/pkgs/games/gnuchess/default.nix
@@ -0,0 +1,28 @@
+{stdenv, fetchurl, flex}:
+let
+  s = # Generated upstream information
+  rec {
+    baseName="gnuchess";
+    version="6.2.5";
+    name="${baseName}-${version}";
+    url="mirror://gnu/chess/${name}.tar.gz";
+    sha256="00j8s0npgfdi41a0mr5w9qbdxagdk2v41lcr42rwl1jp6miyk6cs";
+  };
+  buildInputs = [
+    flex
+  ];
+in
+stdenv.mkDerivation rec {
+  inherit (s) name version;
+  src = fetchurl {
+    inherit (s) url sha256;
+  };
+  inherit buildInputs;
+  meta = {
+    inherit (s) version;
+    description = "GNU Chess engine";
+    maintainers = [stdenv.lib.maintainers.raskin];
+    platforms = stdenv.lib.platforms.unix;
+    license = stdenv.lib.licenses.gpl3Plus;
+  };
+}