Added libdwarf, libevent 1.4, libmcrypt, libmemcached, oniguruma. These are dependencies for HipHop Virtual Machine.
This commit is contained in:
@@ -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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user