2012-03-29 00:30:13 +02:00
|
|
|
{stdenv, fetchurl, cyrus_sasl, libevent}:
|
|
|
|
|
2014-03-13 13:38:23 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-07-11 11:52:03 +02:00
|
|
|
version = "1.5.9";
|
2018-01-04 02:15:07 +01:00
|
|
|
name = "memcached-${version}";
|
2012-03-29 00:30:13 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://memcached.org/files/${name}.tar.gz";
|
2018-07-11 11:52:03 +02:00
|
|
|
sha256 = "01hx4hs8lgmjzpqj1iv5fpdwv1ymrii6bp4nh1s0mjvipxymgwsa";
|
2012-03-29 00:30:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [cyrus_sasl libevent];
|
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-27 00:13:13 +01:00
|
|
|
|
2016-08-24 21:42:08 +02:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-Wno-error";
|
|
|
|
|
2015-06-10 13:00:11 +02:00
|
|
|
meta = with stdenv.lib; {
|
2012-03-29 00:30:13 +02:00
|
|
|
description = "A distributed memory object caching system";
|
2013-12-09 23:51:04 +01:00
|
|
|
repositories.git = https://github.com/memcached/memcached.git;
|
2012-03-29 00:30:13 +02:00
|
|
|
homepage = http://memcached.org/;
|
2015-06-10 13:00:11 +02:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.coconnor ];
|
2015-09-24 17:34:02 +02:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2012-03-29 00:30:13 +02:00
|
|
|
};
|
|
|
|
}
|