summary refs log tree commit diff
path: root/pkgs/development/tools/parsing
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-08-04 13:00:44 +0200
committerPeter Simons <simons@cryp.to>2012-08-04 13:00:44 +0200
commit705fbf2e8ccf6cf3f5b5c67bf719b0a0addf53d5 (patch)
treeda67dd84f5b5693e5284eb6974345a955ff1fee0 /pkgs/development/tools/parsing
parentb8d0aebe51298ba8f1070d0f94b9b6be1313e803 (diff)
downloadnixlib-705fbf2e8ccf6cf3f5b5c67bf719b0a0addf53d5.tar
nixlib-705fbf2e8ccf6cf3f5b5c67bf719b0a0addf53d5.tar.gz
nixlib-705fbf2e8ccf6cf3f5b5c67bf719b0a0addf53d5.tar.bz2
nixlib-705fbf2e8ccf6cf3f5b5c67bf719b0a0addf53d5.tar.lz
nixlib-705fbf2e8ccf6cf3f5b5c67bf719b0a0addf53d5.tar.xz
nixlib-705fbf2e8ccf6cf3f5b5c67bf719b0a0addf53d5.tar.zst
nixlib-705fbf2e8ccf6cf3f5b5c67bf719b0a0addf53d5.zip
bison: update to version 2.6.2
Diffstat (limited to 'pkgs/development/tools/parsing')
-rw-r--r--pkgs/development/tools/parsing/bison/bison-2.6.nix4
1 files 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 96fa7dc8ca53..ea43d30410e3 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;