forked from mirrors/nixpkgs
* Boehm garbage collector.
svn path=/nixpkgs/trunk/; revision=391
This commit is contained in:
parent
a9f88dae64
commit
915672f858
10
pkgs/boehmgc/boehmgc-build.sh
Executable file
10
pkgs/boehmgc/boehmgc-build.sh
Executable 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
12
pkgs/boehmgc/boehmgc.fix
Normal 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"))
|
||||
]
|
||||
)
|
Loading…
Reference in a new issue