Added the Boehm Garbage Collector

svn path=/nixpkgs/trunk/; revision=1785
This commit is contained in:
Martin Bravenboer 2004-11-19 14:57:43 +00:00
parent f6ecc5a089
commit 981cf60a3a

View file

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "boehm-gc-6.3";
src = fetchurl {
url = http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc6.3.tar.gz;
md5 = "8b37ee18cbeb1dfd1866958e280db871";
};
}