about summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-03-04 15:08:13 +0000
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-04-05 13:50:30 +0200
commitd7e7130f64138f6382fd648398547bff12091642 (patch)
tree495abacb6b8f712f2fdcf7f254400ec23b9413f7
parent92ffd641c8d905bde2ce3fc0c9b69a1efd42093c (diff)
downloadnixlib-d7e7130f64138f6382fd648398547bff12091642.tar
nixlib-d7e7130f64138f6382fd648398547bff12091642.tar.gz
nixlib-d7e7130f64138f6382fd648398547bff12091642.tar.bz2
nixlib-d7e7130f64138f6382fd648398547bff12091642.tar.lz
nixlib-d7e7130f64138f6382fd648398547bff12091642.tar.xz
nixlib-d7e7130f64138f6382fd648398547bff12091642.tar.zst
nixlib-d7e7130f64138f6382fd648398547bff12091642.zip
bison: 3.5.1 -> 3.5.2
-rw-r--r--pkgs/development/tools/parsing/bison/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/parsing/bison/default.nix b/pkgs/development/tools/parsing/bison/default.nix
index 41d28173da35..0fbf6a49b2f5 100644
--- a/pkgs/development/tools/parsing/bison/default.nix
+++ b/pkgs/development/tools/parsing/bison/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "bison";
-  version = "3.5.1";
+  version = "3.5.2";
 
   src = fetchurl {
     url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
-    sha256 = "09bg544pavpsivwh175ghgm7y3mkvdxfbwq41lfbwlb7v4i27vsc";
+    sha256 = "1ylls1ba8y62q78vnzawy4ajpjkk5580crgi8krvfk8g13fvdnxl";
   };
 
   nativeBuildInputs = [ m4 perl ] ++ stdenv.lib.optional stdenv.isSunOS help2man;
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
   doInstallCheck = false; # fails
 
   meta = {
-    homepage = https://www.gnu.org/software/bison/;
+    homepage = "https://www.gnu.org/software/bison/";
     description = "Yacc-compatible parser generator";
     license = stdenv.lib.licenses.gpl3Plus;