about summary refs log tree commit diff
path: root/pkgs/development/tools/parsing
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-01-26 12:22:51 -0600
committerWill Dietz <w@wdtz.org>2019-01-26 12:22:51 -0600
commitecce13ef4460ad63b72b685f8eda9b23d61dae39 (patch)
tree788d0c946d0fcc6deb55cbd387cb652cace35873 /pkgs/development/tools/parsing
parent2b57e9fdd3f47dee3e0cabced06f38cb97a4ebce (diff)
downloadnixlib-ecce13ef4460ad63b72b685f8eda9b23d61dae39.tar
nixlib-ecce13ef4460ad63b72b685f8eda9b23d61dae39.tar.gz
nixlib-ecce13ef4460ad63b72b685f8eda9b23d61dae39.tar.bz2
nixlib-ecce13ef4460ad63b72b685f8eda9b23d61dae39.tar.lz
nixlib-ecce13ef4460ad63b72b685f8eda9b23d61dae39.tar.xz
nixlib-ecce13ef4460ad63b72b685f8eda9b23d61dae39.tar.zst
nixlib-ecce13ef4460ad63b72b685f8eda9b23d61dae39.zip
bison: 3.2.4 -> 3.3
https://lists.gnu.org/archive/html/bison-announce/2019-01/msg00002.html
Diffstat (limited to 'pkgs/development/tools/parsing')
-rw-r--r--pkgs/development/tools/parsing/bison/3.x.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/tools/parsing/bison/3.x.nix b/pkgs/development/tools/parsing/bison/3.x.nix
index 3d5f09b7bc3e..72c465b3a72b 100644
--- a/pkgs/development/tools/parsing/bison/3.x.nix
+++ b/pkgs/development/tools/parsing/bison/3.x.nix
@@ -1,15 +1,14 @@
 { stdenv, fetchurl, m4, perl, help2man }:
 
 stdenv.mkDerivation rec {
-  name = "bison-3.2.4";
+  pname = "bison";
+  version = "3.3";
 
   src = fetchurl {
-    url = "mirror://gnu/bison/${name}.tar.gz";
-    sha256 = "16n7xs3sa1rlhs8y8zg4gi2s2kbkz8d69w3xp935wjykk0i3wryb";
+    url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
+    sha256 = "1z8fjyn5gmlf97zdq88hpdf2njxg830bhrhylq25dq5dzxzzpspx";
   };
 
-  patches = []; # remove on another rebuild
-
   nativeBuildInputs = [ m4 perl ] ++ stdenv.lib.optional stdenv.isSunOS help2man;
   propagatedBuildInputs = [ m4 ];