mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
libgc: Add meta-info.
svn path=/nixpkgs/trunk/; revision=17187
This commit is contained in:
parent
2c0b739bca
commit
08cc42f378
|
@ -12,7 +12,30 @@ stdenv.mkDerivation {
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A garbage collector for C and C++";
|
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://www.hpl.hp.com/personal/Hans_Boehm/gc/;
|
homepage = http://www.hpl.hp.com/personal/Hans_Boehm/gc/;
|
||||||
|
|
||||||
|
# non-copyleft, X11-style license
|
||||||
|
license = "http://www.hpl.hp.com/personal/Hans_Boehm/gc/license.txt";
|
||||||
|
|
||||||
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue