2015-09-24 16:47:19 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, cyrus_sasl, libevent }:
|
2012-12-01 20:28:32 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2014-03-01 03:17:16 +00:00
|
|
|
name = "libmemcached-1.0.18";
|
2015-09-24 16:47:19 +01:00
|
|
|
|
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
|
|
|
};
|
2015-09-24 16:47:19 +01:00
|
|
|
|
2014-07-14 22:23:13 +01:00
|
|
|
# Fix linking against libpthread (patch from Fedora)
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1037707
|
|
|
|
# https://bugs.launchpad.net/libmemcached/+bug/1281907
|
2017-08-06 23:05:18 +01:00
|
|
|
# Fix building on macOS (patch from Homebrew)
|
2015-09-24 16:47:19 +01:00
|
|
|
# https://bugs.launchpad.net/libmemcached/+bug/1245562
|
|
|
|
patches = stdenv.lib.optional stdenv.isLinux ./libmemcached-fix-linking-with-libpthread.patch
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin (fetchpatch {
|
|
|
|
url = "https://raw.githubusercontent.com/Homebrew/homebrew/bfd4a0a4626b61c2511fdf573bcbbc6bbe86340e/Library/Formula/libmemcached.rb";
|
2017-01-05 14:48:49 +00:00
|
|
|
sha256 = "1gjf3vd7hiyzxjvlg2zfc3y2j0lyr6nhbws4xb5dmin3csyp8qb8";
|
2017-05-28 13:25:22 +01:00
|
|
|
})
|
|
|
|
++ stdenv.lib.optional stdenv.hostPlatform.isMusl ./musl-fixes.patch;
|
2014-07-14 22:23:13 +01:00
|
|
|
|
2016-04-25 14:21:38 +01:00
|
|
|
buildInputs = [ libevent ];
|
|
|
|
propagatedBuildInputs = [ cyrus_sasl ];
|
2012-12-01 20:28:32 +00:00
|
|
|
|
2019-10-30 01:29:30 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-fpermissive";
|
2018-02-17 15:34:39 +00:00
|
|
|
|
2014-07-14 22:38:33 +01:00
|
|
|
meta = with stdenv.lib; {
|
2019-04-15 00:25:45 +01:00
|
|
|
homepage = https://libmemcached.org;
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Open source C/C++ client library and tools for the memcached server";
|
2014-07-14 22:38:33 +01:00
|
|
|
license = licenses.bsd3;
|
2015-09-24 16:47:19 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2012-12-01 20:28:32 +00:00
|
|
|
};
|
|
|
|
}
|