mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
a3c2bd5aec
Add perl dependency and patch ./configure to use it.
27 lines
574 B
Nix
27 lines
574 B
Nix
{ 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";
|
|
};
|
|
}
|