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