about summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/bison
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2013-05-04 19:38:46 -0400
committerShea Levy <shea@shealevy.com>2013-05-04 19:38:46 -0400
commit6b78544addd4f46f7ad073fb7de83d0bb8b8de30 (patch)
treeb2ab7bdf75147e11e62919ed5c692f4d86c2d238 /pkgs/development/tools/parsing/bison
parentfde3526e7d0c941f138f3b4906bd48359567da3a (diff)
downloadnixlib-6b78544addd4f46f7ad073fb7de83d0bb8b8de30.tar
nixlib-6b78544addd4f46f7ad073fb7de83d0bb8b8de30.tar.gz
nixlib-6b78544addd4f46f7ad073fb7de83d0bb8b8de30.tar.bz2
nixlib-6b78544addd4f46f7ad073fb7de83d0bb8b8de30.tar.lz
nixlib-6b78544addd4f46f7ad073fb7de83d0bb8b8de30.tar.xz
nixlib-6b78544addd4f46f7ad073fb7de83d0bb8b8de30.tar.zst
nixlib-6b78544addd4f46f7ad073fb7de83d0bb8b8de30.zip
binutils: enable gold by default
This doesn't change the default but makes gold available to packages
that might want to use it.

Required switching to the gzipped tarball for bison, as xz isn't
available in the early bootstrap.

Signed-off-by: Shea Levy <shea@shealevy.com>
Diffstat (limited to 'pkgs/development/tools/parsing/bison')
-rw-r--r--pkgs/development/tools/parsing/bison/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/parsing/bison/default.nix b/pkgs/development/tools/parsing/bison/default.nix
index 4e4539059a61..c1de3315beea 100644
--- a/pkgs/development/tools/parsing/bison/default.nix
+++ b/pkgs/development/tools/parsing/bison/default.nix
@@ -4,8 +4,8 @@ stdenv.mkDerivation rec {
   name = "bison-2.7";
 
   src = fetchurl {
-    url = "mirror://gnu/bison/${name}.tar.xz";
-    sha256 = "1zd77ilmpv5mi3kr55jrj6ncqlcnyhpianhrwzak2q28cv2cbn23";
+    url = "mirror://gnu/bison/${name}.tar.gz";
+    sha256 = "0cd8s2g7zjshya7kwjc9rh3drsssl4hiq4sccnkgf0nn9wvygfqr";
   };
 
   nativeBuildInputs = [ m4 ] ++ stdenv.lib.optional doCheck perl;