jam: add yacc as build input

I am not sure why do I need this locally, it seems to be passing in hydra
anyway...
This commit is contained in:
Samuel Rivas 2015-09-07 11:37:18 +02:00
parent b5b78eaf44
commit 4ef2d19981

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl}: {stdenv, fetchurl, yacc}:
let let
bindir = if stdenv.system == "i686-linux" then "bin.linuxx86" bindir = if stdenv.system == "i686-linux" then "bin.linuxx86"
@ -13,6 +13,8 @@ stdenv.mkDerivation {
sha256 = "04c6khd7gdkqkvx4h3nbz99lyz7waid4fd221hq5chcygyx1sj3i"; sha256 = "04c6khd7gdkqkvx4h3nbz99lyz7waid4fd221hq5chcygyx1sj3i";
}; };
buildInputs = [ yacc ];
installPhase = '' installPhase = ''
mkdir -p $out/bin mkdir -p $out/bin
cp ${bindir}/jam $out/bin cp ${bindir}/jam $out/bin