summary refs log tree commit diff
path: root/pkgs/games/xboard/default.nix
blob: a1a65165326b0506d83d30c8a26c213e90726a6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
a:  
let 
  fetchurl = a.fetchurl;

  buildInputs = with a; [
    libX11 xproto libXt libXaw libSM libICE libXmu 
    libXext gnuchess texinfo libXpm
  ];

  s = import ./src-for-default.nix;
in
rec {
  src = fetchurl {
    inherit(s) url;
    sha256 = s.hash;
  };

  inherit buildInputs;
  configureFlags = [];

  /* doConfigure should be removed if not needed */
  phaseNames = ["doConfigure" "preBuild" "doMakeInstall"];

  preBuild = a.fullDepEntry(''
    sed -e '/FIRST_CHESS_PROGRAM/s@gnuchessx@${a.gnuchess}/bin/gnuchessx@' -i xboard.h
    sed -e '/SECOND_CHESS_PROGRAM/s@gnuchessx@${a.gnuchess}/bin/gnuchessx@' -i xboard.h
  '') ["doUnpack" "minInit"];
      
  inherit(s) name;
  meta = {
    description = "XBoard - a chess board compatible with GNU Chess";
  };
}