aboutsummaryrefslogtreecommitdiff
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.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/nixpkgs/pkgs/games/gnuchess/default.nix b/nixpkgs/pkgs/games/gnuchess/default.nix
index 43c60c66730..478da6dc32a 100644
--- a/nixpkgs/pkgs/games/gnuchess/default.nix
+++ b/nixpkgs/pkgs/games/gnuchess/default.nix
@@ -1,12 +1,12 @@
-{stdenv, fetchurl, flex}:
+{stdenv, fetchurl, flex, makeWrapper}:
let
s = # Generated upstream information
rec {
baseName="gnuchess";
- version="6.2.5";
+ version="6.2.6";
name="${baseName}-${version}";
url="mirror://gnu/chess/${name}.tar.gz";
- sha256="00j8s0npgfdi41a0mr5w9qbdxagdk2v41lcr42rwl1jp6miyk6cs";
+ sha256="0kxhdv01ia91v2y0cmzbll391ns2vbmn65jjrv37h4s1srszh5yn";
};
buildInputs = [
flex
@@ -18,6 +18,13 @@ stdenv.mkDerivation {
inherit (s) url sha256;
};
inherit buildInputs;
+ nativeBuildInputs = [ makeWrapper ];
+
+ postInstall = ''
+ wrapProgram $out/bin/gnuchessx --set PATH "$out/bin"
+ wrapProgram $out/bin/gnuchessu --set PATH "$out/bin"
+ '';
+
meta = {
inherit (s) version;
description = "GNU Chess engine";