nixpkgs/pkgs/development/libraries/boehm-gc/default.nix
Martin Bravenboer 981cf60a3a Added the Boehm Garbage Collector
svn path=/nixpkgs/trunk/; revision=1785
2004-11-19 14:57:43 +00:00

10 lines
219 B
Nix

{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";
};
}