3
0
Fork 0
forked from mirrors/nixpkgs

Fix byacc

This commit is contained in:
Daniel Peebles 2014-08-31 16:00:51 -04:00
parent 3c8ddf7881
commit ba13808259

View file

@ -4,15 +4,10 @@ stdenv.mkDerivation {
name = "byacc-1.9";
src = fetchurl {
url = http://www.isc.org/sources/devel/tools/byacc-1.9.tar.gz;
sha256 = "d61a15ac4ac007c188d0c0e99365f016f8d327755f43032b58e400754846f736";
url = http://invisible-island.net/datafiles/release/byacc.tar.gz;
sha256 = "1rbzx5ipkvih9rjfdfv6310wcr6mxjbdlsh9zcv5aaz6yxxxil7c";
};
preConfigure =
''mkdir -p $out/bin
sed -i "s@^DEST.*\$@DEST = $out/bin/yacc@" Makefile
'';
meta = {
description = "Berkeley YACC";
homepage = http://dickey.his.com/byacc/byacc.html;