Merge pull request #150236 from r-ryantm/auto-update/boehm-gc

boehmgc: 8.0.6 -> 8.2.0
This commit is contained in:
Dmitry Kalinkin 2021-12-25 16:58:44 -05:00 committed by GitHub
commit 06a2216eba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,21 @@
{ lib, stdenv, fetchurl
, autoreconfHook
, enableLargeConfig ? false # doc: https://github.com/ivmai/bdwgc/blob/v8.0.6/doc/README.macros#L195
, enableLargeConfig ? false # doc: https://github.com/ivmai/bdwgc/blob/v8.2.0/doc/README.macros (LARGE_CONFIG)
, nix
, nix_2_3
, nixUnstable
}:
stdenv.mkDerivation rec {
pname = "boehm-gc";
version = "8.0.6";
version = "8.2.0";
src = fetchurl {
urls = [
"https://github.com/ivmai/bdwgc/releases/download/v${version}/gc-${version}.tar.gz"
"https://www.hboehm.info/gc/gc_source/gc-${version}.tar.gz"
];
sha256 = "3b4914abc9fa76593596773e4da671d7ed4d5390e3d46fbf2e5f155e121bea11";
sha256 = "sha256-JUD3NWy3T2xbdTJsbTigZu3XljYf19TtJuSU2YVv7Y8=";
};
outputs = [ "out" "dev" "doc" ];
@ -36,6 +39,17 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
passthru = {
tests = {
# Assuming this package is picked up by these packages as expected.
inherit
nix
nixUnstable
nix_2_3
;
};
};
meta = {
description = "The Boehm-Demers-Weiser conservative garbage collector for C and C++";