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