forked from mirrors/nixpkgs
Added the Boehm Garbage Collector
svn path=/nixpkgs/trunk/; revision=1785
This commit is contained in:
parent
f6ecc5a089
commit
981cf60a3a
9
pkgs/development/libraries/boehm-gc/default.nix
Normal file
9
pkgs/development/libraries/boehm-gc/default.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue