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,16 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libmcrypt-2.5.8";
src = fetchurl {
url = mirror://sourceforge/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz;
sha256 = "0gipgb939vy9m66d3k8il98rvvwczyaw2ixr8yn6icds9c3nrsz4";
};
buildInputs = [];
meta = {
homepage = http://mcrypt.sourceforge.net;
};
}