Added libdwarf, libevent 1.4, libmcrypt, libmemcached, oniguruma. These are dependencies for HipHop Virtual Machine.

This commit is contained in:
Rob Vermaas
2012-12-01 21:28:32 +01:00
parent 86a5ad6d80
commit 502587abb0
7 changed files with 147 additions and 1 deletions
@@ -0,0 +1,27 @@
{ stdenv, fetchurl, libelf }:
stdenv.mkDerivation rec {
name = "libdwarf-20121130";
src = fetchurl {
url = http://reality.sgiweb.org/davea/libdwarf-20121130.tar.gz;
sha256 = "1nfdfn5xf3n485pvpb853awyxxnvrg207i0wmrr7bhk8fcxdxbn0";
};
configureFlags = " --enable-shared --disable-nonshared";
preConfigure = ''
cd libdwarf
'';
buildInputs = [ libelf ];
installPhase = ''
mkdir -p $out/lib $out/include
cp libdwarf.so $out/lib
cp libdwarf.h dwarf.h $out/include
'';
meta = {
homepage = http://reality.sgiweb.org/davea/dwarf.html;
};
}