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: 92ffd641c8d9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d7e7130f6413
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 5, 2020

  1. bison: 3.5.1 -> 3.5.2

    r-ryantm authored and FRidh committed Apr 5, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    MichaReiser Micha Reiser
    Copy the full SHA
    d7e7130 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/parsing/bison/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/parsing/bison/default.nix
Original file line number Diff line number Diff line change
@@ -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;