about summary refs log tree commit diff
path: root/pkgs/development/tools/parsing
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-09-16 09:58:43 -0500
committerSamuel Leathers <disasm@gmail.com>2019-09-16 10:58:43 -0400
commitb86f9d6d46034beebe801d278641519938ee59c0 (patch)
tree964680321dab07b29170f3ce3ba9a7f67a3cc3bd /pkgs/development/tools/parsing
parent5df6d6fb581232c11cdfe19792b3f905aede9f12 (diff)
downloadnixlib-b86f9d6d46034beebe801d278641519938ee59c0.tar
nixlib-b86f9d6d46034beebe801d278641519938ee59c0.tar.gz
nixlib-b86f9d6d46034beebe801d278641519938ee59c0.tar.bz2
nixlib-b86f9d6d46034beebe801d278641519938ee59c0.tar.lz
nixlib-b86f9d6d46034beebe801d278641519938ee59c0.tar.xz
nixlib-b86f9d6d46034beebe801d278641519938ee59c0.tar.zst
nixlib-b86f9d6d46034beebe801d278641519938ee59c0.zip
bison: 3.4.1 -> 3.4.2, bugfix release (#68734)
Diffstat (limited to 'pkgs/development/tools/parsing')
-rw-r--r--pkgs/development/tools/parsing/bison/3.x.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/parsing/bison/3.x.nix b/pkgs/development/tools/parsing/bison/3.x.nix
index bbcecae8f04f..5382ec421b7e 100644
--- a/pkgs/development/tools/parsing/bison/3.x.nix
+++ b/pkgs/development/tools/parsing/bison/3.x.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "bison";
-  version = "3.4.1";
+  version = "3.4.2";
 
   src = fetchurl {
     url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
-    sha256 = "15ah05gharrzcxs8q5pm9mli5dp5lw19nd95apzzmyqnqa4zq1vh";
+    sha256 = "1kzsb6fmmpq00l2s55hyb4dbsmz8f3a64ria6354wlbx6ypj4fgz";
   };
 
   nativeBuildInputs = [ m4 perl ] ++ stdenv.lib.optional stdenv.isSunOS help2man;