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: 051fcba987a8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 690fb6e723a4
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Feb 4, 2019

  1. Copy the full SHA
    b3d8b2d View commit details

Commits on Feb 12, 2019

  1. Merge pull request #55166 from dtzWill/update/bison-3.3.2

    bison: 3.3.1 -> 3.3.2
    dtzWill authored Feb 12, 2019
    Copy the full SHA
    690fb6e 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
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "bison";
version = "3.3.1";
version = "3.3.2";

src = fetchurl {
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
sha256 = "0sz6rzmfz5scian0a28lrvkrsd0108dmxrxpqh4nyi2ahlglbma1";
sha256 = "1lfvns1f6xamz9905fakzkxh4zmk1wa9w33vxcq78fc5841ivnhg";
};

nativeBuildInputs = [ m4 perl ] ++ stdenv.lib.optional stdenv.isSunOS help2man;