summary refs log tree commit diff
path: root/pkgs/games/eboard/default.nix
blob: 1a99fcd9c24e894495212e50760b73dae471b3ab (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
{ stdenv, fetchurl, perl, pkgconfig, gtk }:

stdenv.mkDerivation {
  name = "eboard-1.1.1";

  src = fetchurl {
    url = mirror://sourceforge/eboard/eboard-1.1.1.tar.bz2;
    sha256 = "0vm25j1s2zg1lipwjv9qrcm877ikfmk1yh34i8f5l3bwd63115xd";
  };

  patches = [ ./eboard.patch ];

  buildInputs = [ gtk ];
  nativeBuildInputs = [ perl pkgconfig ];

  preConfigure = ''
    patchShebangs ./configure
  '';

  NIX_CFLAGS_COMPILE = [ "-fpermissive" ];

  meta = {
    homepage = http://www.bergo.eng.br/eboard/;
    description = "Chess interface for Unix-like systems";
    platforms = stdenv.lib.platforms.linux;
  };
}