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