aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/parsing/bison/3.x.nix
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-05-31 10:56:38 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-05-31 19:56:38 +0200
commit42e18cf6d1086f68210c9d9ad1293bb53b66a7cd (patch)
tree6ca8a6104424dcbe54cdbf1f8ddf6c5cfe9cb592 /pkgs/development/tools/parsing/bison/3.x.nix
parent252a8af143f8c47ff62ace476df42a2d62db1601 (diff)
bison: 3.0.4 -> 3.0.5 (#41302)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/bison/versions. These checks were done: - built on NixOS - /nix/store/q481pyq4xd66jis7wdcfjy3dldch0vwl-bison-3.0.5/bin/bison passed the binary check. - /nix/store/q481pyq4xd66jis7wdcfjy3dldch0vwl-bison-3.0.5/bin/yacc passed the binary check. - 2 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 3.0.5 with grep in /nix/store/q481pyq4xd66jis7wdcfjy3dldch0vwl-bison-3.0.5 - directory tree listing: https://gist.github.com/76c5b3a38b02115e31a48c51785d1bd3 - du listing: https://gist.github.com/566dbfdfcc7a89fa9cd11d1ddf49935c
Diffstat (limited to '')
-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 9c75e93bb1c1..921f5d2d948c 100644
--- a/pkgs/development/tools/parsing/bison/3.x.nix
+++ b/pkgs/development/tools/parsing/bison/3.x.nix
@@ -1,11 +1,11 @@
{ stdenv, hostPlatform, fetchurl, m4, perl, help2man }:
stdenv.mkDerivation rec {
- name = "bison-3.0.4";
+ name = "bison-3.0.5";
src = fetchurl {
url = "mirror://gnu/bison/${name}.tar.gz";
- sha256 = "b67fd2daae7a64b5ba862c66c07c1addb9e6b1b05c5f2049392cfd8a2172952e";
+ sha256 = "0rnml9spd6p0i5qy9g4r82drwdr09r1z9cf4p89agbrkxqmrsffd";
};
patches = stdenv.lib.optional hostPlatform.isDarwin stdenv.secure-format-patch;