about summary refs log tree commit diff
path: root/pkgs/games/chessx
diff options
context:
space:
mode:
authorLuis Pedro Coelho <luis@luispedro.org>2015-12-14 00:51:05 +0100
committerLuis Pedro Coelho <luis@luispedro.org>2015-12-30 23:19:44 +0100
commitc570bc50bc885ee6c87d90f77296b3619a5241c0 (patch)
treedbe2d168ac4ad987ceb6e0a62cd5816ce0d700cc /pkgs/games/chessx
parent8bec69e9c83b6b8973d5819670bce9ab2d4b1203 (diff)
downloadnixlib-c570bc50bc885ee6c87d90f77296b3619a5241c0.tar
nixlib-c570bc50bc885ee6c87d90f77296b3619a5241c0.tar.gz
nixlib-c570bc50bc885ee6c87d90f77296b3619a5241c0.tar.bz2
nixlib-c570bc50bc885ee6c87d90f77296b3619a5241c0.tar.lz
nixlib-c570bc50bc885ee6c87d90f77296b3619a5241c0.tar.xz
nixlib-c570bc50bc885ee6c87d90f77296b3619a5241c0.tar.zst
nixlib-c570bc50bc885ee6c87d90f77296b3619a5241c0.zip
chessx: init at 1.3.2
Chessx is a chess database GUI. Using the stockfish engine, users can
also analyse games.
Diffstat (limited to 'pkgs/games/chessx')
-rw-r--r--pkgs/games/chessx/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/games/chessx/default.nix b/pkgs/games/chessx/default.nix
new file mode 100644
index 000000000000..dd0fa16b707c
--- /dev/null
+++ b/pkgs/games/chessx/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, pkgconfig, zlib, qtbase, qtsvg, qttools, qtmultimedia, fetchurl }:
+stdenv.mkDerivation rec {
+  name = "chessx-${version}";
+  version = "1.3.2";
+  src = fetchurl {
+    url = "mirror://sourceforge/chessx/chessx-${version}.tgz";
+    sha256 = "b136cf56d37d34867cdb9538176e1703b14f61b3384885b6f100580d0af0a3ff";
+  };
+  preConfigure = ''
+    qmake -spec linux-g++ chessx.pro
+  '';
+  buildInputs = [
+   stdenv
+   pkgconfig
+   qtbase
+   qtsvg
+   qttools
+   qtmultimedia
+   zlib
+  ];
+
+  enableParallelBuilding = true;
+  installPhase = ''
+      mkdir -p "$out/bin"
+      cp -pr release/chessx "$out/bin"
+  '';
+
+  meta = with stdenv.lib; {
+    homepage = http://chessx.sourceforge.net/;
+    description = "ChessX allows you to browse and analyse chess games";
+    license = licenses.gpl2;
+    maintainers = [maintainers.luispedro];
+  };
+}