2014-09-18 03:16:12 -07:00
|
|
|
{ lib, stdenv, fetchurl, enableLargeConfig ? false }:
|
2004-11-19 06:57:43 -08:00
|
|
|
|
2012-10-03 11:06:53 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2014-08-21 08:53:36 -07:00
|
|
|
name = "boehm-gc-7.2f";
|
2008-09-05 01:03:44 -07:00
|
|
|
|
2011-02-02 04:17:29 -08:00
|
|
|
src = fetchurl {
|
2014-08-21 08:53:36 -07:00
|
|
|
url = http://www.hboehm.info/gc/gc_source/gc-7.2f.tar.gz;
|
|
|
|
sha256 = "119x7p1cqw40mpwj80xfq879l9m1dkc7vbc1f3bz3kvkf8bf6p16";
|
2011-02-02 04:17:29 -08:00
|
|
|
};
|
2009-09-18 07:30:10 -07:00
|
|
|
|
2014-09-18 03:16:12 -07:00
|
|
|
configureFlags =
|
|
|
|
[ "--enable-cplusplus" ]
|
|
|
|
++ lib.optional enableLargeConfig "--enable-large-config";
|
2012-10-03 11:06:53 -07:00
|
|
|
|
2008-09-05 01:03:44 -07:00
|
|
|
doCheck = true;
|
|
|
|
|
2012-10-03 11:06:53 -07:00
|
|
|
# Don't run the native `strip' when cross-compiling.
|
|
|
|
dontStrip = stdenv ? cross;
|
|
|
|
|
2008-01-05 16:12:25 -08:00
|
|
|
meta = {
|
2009-09-16 05:39:57 -07:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2014-11-17 16:47:23 -08:00
|
|
|
homepage = http://hboehm.info/gc/;
|
2009-09-16 05:39:57 -07:00
|
|
|
|
|
|
|
# non-copyleft, X11-style license
|
2014-11-17 16:47:23 -08:00
|
|
|
license = http://hboehm.info/gc/license.txt;
|
2009-09-16 05:39:57 -07:00
|
|
|
|
2015-01-13 13:33:24 -08:00
|
|
|
maintainers = [ ];
|
2010-02-12 06:14:40 -08:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2004-11-19 06:57:43 -08:00
|
|
|
};
|
|
|
|
}
|