2020-02-10 03:27:16 +00:00
|
|
|
{stdenv, fetchurl, fetchpatch, cyrus_sasl, libevent}:
|
2012-03-28 23:30:13 +01:00
|
|
|
|
2014-03-13 12:38:23 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-02-08 20:39:31 +00:00
|
|
|
version = "1.5.22";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "memcached";
|
2012-03-28 23:30:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://memcached.org/files/${pname}-${version}.tar.gz";
|
2020-02-08 20:39:31 +00:00
|
|
|
sha256 = "14qzbxgz40j4yhi3lzrsdjd6kyy3zwv9c8kw11kj6njp42fpxd62";
|
2012-03-28 23:30:13 +01:00
|
|
|
};
|
|
|
|
|
2020-02-10 03:27:16 +00:00
|
|
|
patches = [
|
|
|
|
# Fixes compilation error on Darwin due to redeclaration of
|
|
|
|
# htonll. The fix should appear in 1.5.23.
|
|
|
|
# https://github.com/memcached/memcached/issues/598
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/memcached/memcached/commit/95c67710aaf5cfe188d94b510faef8c66d6f5604.diff";
|
|
|
|
sha256 = "0ab5l24p4n4fpx78ilmg7jvs9nl84pdza90jbpbx3ns5n23pqbfs";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-12-11 22:17:11 +00:00
|
|
|
configureFlags = [
|
|
|
|
"ac_cv_c_endian=${if stdenv.hostPlatform.isBigEndian then "big" else "little"}"
|
|
|
|
];
|
|
|
|
|
2012-03-28 23:30:13 +01:00
|
|
|
buildInputs = [cyrus_sasl libevent];
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-26 23:13:13 +00:00
|
|
|
|
2016-08-24 20:42:08 +01:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-Wno-error";
|
|
|
|
|
2015-06-10 12:00:11 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-03-28 23:30:13 +01:00
|
|
|
description = "A distributed memory object caching system";
|
2013-12-09 22:51:04 +00:00
|
|
|
repositories.git = https://github.com/memcached/memcached.git;
|
2012-03-28 23:30:13 +01:00
|
|
|
homepage = http://memcached.org/;
|
2015-06-10 12:00:11 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.coconnor ];
|
2015-09-24 16:34:02 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2012-03-28 23:30:13 +01:00
|
|
|
};
|
|
|
|
}
|