My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/games/eboard/default.nix

31 lines
705 B

{ lib, stdenv, fetchurl, perl, pkg-config, gtk2 }:
stdenv.mkDerivation rec {
pname = "eboard";
version = "1.1.1";
src = fetchurl {
url = "mirror://sourceforge/eboard/eboard-${version}.tar.bz2";
sha256 = "0vm25j1s2zg1lipwjv9qrcm877ikfmk1yh34i8f5l3bwd63115xd";
};
patches = [ ./eboard.patch ];
buildInputs = [ gtk2 ];
nativeBuildInputs = [ perl pkg-config ];
hardeningDisable = [ "format" ];
preConfigure = ''
patchShebangs ./configure
'';
NIX_CFLAGS_COMPILE = "-fpermissive";
NIX_LDFLAGS = "-ldl";
meta = {
homepage = "http://www.bergo.eng.br/eboard/";
description = "Chess interface for Unix-like systems";
platforms = lib.platforms.linux;
};
}