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

Commits on Mar 3, 2019

  1. Copy the full SHA
    9c3a566 View commit details

Commits on Mar 4, 2019

  1. Merge pull request #56756 from dtzWill/update/bdwgc-8.0.4

    boehmgc: 8.0.2 -> 8.0.4
    dtzWill authored Mar 4, 2019
    Copy the full SHA
    ec8fac6 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/boehm-gc/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/boehm-gc/default.nix
Original file line number Diff line number Diff line change
@@ -4,14 +4,14 @@

stdenv.mkDerivation rec {
name = "boehm-gc-${version}";
version = "8.0.2";
version = "8.0.4";

src = fetchurl {
urls = [
"https://github.com/ivmai/bdwgc/releases/download/v${version}/gc-${version}.tar.gz"
"http://www.hboehm.info/gc/gc_source/gc-${version}.tar.gz"
];
sha256 = "1jsixcpdwy5cgq5s9fi3bdlid9zh46vakymf3nbjffianyss932f";
sha256 = "1798rp3mcfkgs38ynkbg2p47bq59pisrc6mn0l20pb5iczf0ssj3";
};

buildInputs = [ libatomic_ops ];