From 705fbf2e8ccf6cf3f5b5c67bf719b0a0addf53d5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 4 Aug 2012 13:00:44 +0200 Subject: [PATCH] bison: update to version 2.6.2 --- pkgs/development/tools/parsing/bison/bison-2.6.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/parsing/bison/bison-2.6.nix b/pkgs/development/tools/parsing/bison/bison-2.6.nix index 96fa7dc8ca5..ea43d30410e 100644 --- a/pkgs/development/tools/parsing/bison/bison-2.6.nix +++ b/pkgs/development/tools/parsing/bison/bison-2.6.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, m4, perl }: stdenv.mkDerivation rec { - name = "bison-2.6"; + name = "bison-2.6.2"; src = fetchurl { url = "mirror://gnu/bison/${name}.tar.xz"; - sha256 = "6dde6668484acb66267c74174f0cf850bd1be01f6e94850b9bd86ea2046a87a1"; + sha256 = "79503f80397c30ac81b62eca5ffeaccaed72fdfeddb76257efcf8c3ca24be03d"; }; buildNativeInputs = [ m4 ] ++ stdenv.lib.optional doCheck perl;