c4e9e4a4d6
These should be the same version.
63 lines
2.0 KiB
Nix
63 lines
2.0 KiB
Nix
{ lib, stdenv, fetchurl, pkgconfig, libatomic_ops, enableLargeConfig ? false
|
|
, buildPlatform, hostPlatform
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "boehm-gc-${version}";
|
|
version = "7.6.2";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"http://www.hboehm.info/gc/gc_source/gc-${version}.tar.gz"
|
|
"https://github.com/ivmai/bdwgc/releases/download/v${version}/gc-${version}.tar.gz"
|
|
];
|
|
sha256 = "07nli9hgdzc09qzw169sn7gchkrn5kqgyniv2rspcy1xaq2j04dx";
|
|
};
|
|
|
|
buildInputs = [ libatomic_ops ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
outputs = [ "out" "dev" "doc" ];
|
|
separateDebugInfo = stdenv.isLinux;
|
|
|
|
configureFlags =
|
|
[ "--enable-cplusplus" ]
|
|
++ lib.optional enableLargeConfig "--enable-large-config";
|
|
|
|
doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
|
|
|
|
# Don't run the native `strip' when cross-compiling.
|
|
dontStrip = hostPlatform != buildPlatform;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "The Boehm-Demers-Weiser conservative garbage collector for C and C++";
|
|
|
|
longDescription = ''
|
|
The Boehm-Demers-Weiser conservative garbage collector can be used as a
|
|
garbage collecting replacement for C malloc or C++ new. It allows you
|
|
to allocate memory basically as you normally would, without explicitly
|
|
deallocating memory that is no longer useful. The collector
|
|
automatically recycles memory when it determines that it can no longer
|
|
be otherwise accessed.
|
|
|
|
The collector is also used by a number of programming language
|
|
implementations that either use C as intermediate code, want to
|
|
facilitate easier interoperation with C libraries, or just prefer the
|
|
simple collector interface.
|
|
|
|
Alternatively, the garbage collector may be used as a leak detector for
|
|
C or C++ programs, though that is not its primary goal.
|
|
'';
|
|
|
|
homepage = http://hboehm.info/gc/;
|
|
|
|
# non-copyleft, X11-style license
|
|
license = http://hboehm.info/gc/license.txt;
|
|
|
|
maintainers = [ ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|