2012-12-01 20:28:32 +00:00
|
|
|
{ stdenv, fetchurl, cyrus_sasl, libevent }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-03-01 03:17:16 +00:00
|
|
|
name = "libmemcached-1.0.18";
|
2012-12-01 20:28:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-03-01 03:17:16 +00:00
|
|
|
url = https://launchpad.net/libmemcached/1.0/1.0.18/+download/libmemcached-1.0.18.tar.gz;
|
|
|
|
sha256 = "10jzi14j32lpq0if0p9vygcl2c1352hwbywzvr9qzq7x6aq0nb72";
|
2012-12-01 20:28:32 +00:00
|
|
|
};
|
|
|
|
|
2014-07-14 21:23:13 +00:00
|
|
|
# Fix linking against libpthread (patch from Fedora)
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1037707
|
|
|
|
# https://bugs.launchpad.net/libmemcached/+bug/1281907
|
|
|
|
patches = [ ./libmemcached-fix-linking-with-libpthread.patch ];
|
|
|
|
|
2012-12-01 20:28:32 +00:00
|
|
|
buildInputs = [ cyrus_sasl libevent ];
|
|
|
|
|
2014-07-14 21:38:33 +00:00
|
|
|
meta = with stdenv.lib; {
|
2012-12-01 20:28:32 +00:00
|
|
|
homepage = http://libmemcached.org;
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Open source C/C++ client library and tools for the memcached server";
|
2014-07-14 21:38:33 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
2012-12-01 20:28:32 +00:00
|
|
|
};
|
|
|
|
}
|