Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 252a8af143f8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 42e18cf6d108
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 31, 2018

  1. 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
    r-ryantm authored and xeji committed May 31, 2018
    Copy the full SHA
    42e18cf View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/parsing/bison/3.x.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/parsing/bison/3.x.nix
Original file line number Diff line number Diff line change
@@ -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;