about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorDaniel Peebles <pumpkin@me.com>2014-08-31 16:00:51 -0400
committerDaniel Peebles <pumpkin@me.com>2014-08-31 16:01:03 -0400
commitba13808259753206c8c329676710b3c0d08b78ec (patch)
treecdfb6f67661914558f83afdd9af2e107c97e3627 /pkgs/development/tools
parent3c8ddf78816d25fd057f0c0f03e7e63c9af35c86 (diff)
downloadnixlib-ba13808259753206c8c329676710b3c0d08b78ec.tar
nixlib-ba13808259753206c8c329676710b3c0d08b78ec.tar.gz
nixlib-ba13808259753206c8c329676710b3c0d08b78ec.tar.bz2
nixlib-ba13808259753206c8c329676710b3c0d08b78ec.tar.lz
nixlib-ba13808259753206c8c329676710b3c0d08b78ec.tar.xz
nixlib-ba13808259753206c8c329676710b3c0d08b78ec.tar.zst
nixlib-ba13808259753206c8c329676710b3c0d08b78ec.zip
Fix byacc
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/parsing/byacc/default.nix9
1 files changed, 2 insertions, 7 deletions
diff --git a/pkgs/development/tools/parsing/byacc/default.nix b/pkgs/development/tools/parsing/byacc/default.nix
index ec3026110531..f3ec8225f1ca 100644
--- a/pkgs/development/tools/parsing/byacc/default.nix
+++ b/pkgs/development/tools/parsing/byacc/default.nix
@@ -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;