* Boehm garbage collector.

svn path=/nixpkgs/trunk/; revision=391
This commit is contained in:
Eelco Dolstra 2003-09-12 10:20:34 +00:00
parent a9f88dae64
commit 915672f858
2 changed files with 22 additions and 0 deletions

10
pkgs/boehmgc/boehmgc-build.sh Executable file
View file

@ -0,0 +1,10 @@
#! /bin/sh
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd gc* || exit 1
./configure --prefix=$out --disable-shared || exit 1
make || exit 1
make install || exit 1
strip -S $out/lib/*.a || exit 1

12
pkgs/boehmgc/boehmgc.fix Normal file
View file

@ -0,0 +1,12 @@
Package(
[ ("name", "boehmgc-6.2")
, ("build", Relative("boehmgc/boehmgc-build.sh"))
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
[ ("url", "http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc6.2.tar.gz")
, ("md5", "15492b14ca7b9a9e035238611e9cd1e3")
]))
, ("stdenv", IncludeFix("stdenv/stdenv.fix"))
]
)