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,18 @@
{ stdenv, fetchurl, cyrus_sasl, libevent }:
stdenv.mkDerivation rec {
name = "libmemcached-1.0.14";
src = fetchurl {
url = https://launchpad.net/libmemcached/1.0/1.0.14/+download/libmemcached-1.0.14.tar.gz;
sha256 = "0swl3r7m35rx7abkfycpcknbf83y7l2azq9zscms2rc99cnfmsij";
};
buildInputs = [ cyrus_sasl libevent ];
meta = {
homepage = http://libmemcached.org;
description = "libMemcached is an open source C/C++ client library and tools for the memcached server.";
license = "BSD";
};
}