eboard: fix build
Add perl dependency and patch ./configure to use it.
This commit is contained in:
parent
20c1ef63cb
commit
a3c2bd5aec
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, pkgconfig, gtk }:
|
||||
{ stdenv, fetchurl, perl, pkgconfig, gtk }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "eboard-1.1.1";
|
||||
|
@ -10,7 +10,14 @@ stdenv.mkDerivation {
|
|||
|
||||
patches = [ ./eboard.patch ];
|
||||
|
||||
buildInputs = [ pkgconfig gtk ];
|
||||
buildInputs = [ gtk ];
|
||||
nativeBuildInputs = [ perl pkgconfig ];
|
||||
|
||||
preConfigure = ''
|
||||
patchShebangs ./configure
|
||||
'';
|
||||
|
||||
NIX_CFLAGS_COMPILE = [ "-fpermissive" ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.bergo.eng.br/eboard/;
|
||||
|
|
Loading…
Reference in New Issue