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