2020-04-07 19:53:16 +02:00
|
|
|
{stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }:
|
2012-03-29 00:30:13 +02:00
|
|
|
|
2014-03-13 13:38:23 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-22 14:31:39 +02:00
|
|
|
version = "1.6.6";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "memcached";
|
2012-03-29 00:30:13 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://memcached.org/files/${pname}-${version}.tar.gz";
|
2020-05-22 14:31:39 +02:00
|
|
|
sha256 = "1xrj7vy05nc6bky4wnrmrbxfibvk5vq4dp2fwk4jk4amzbn0x3wh";
|
2012-03-29 00:30:13 +02:00
|
|
|
};
|
|
|
|
|
2018-12-11 23:17:11 +01:00
|
|
|
configureFlags = [
|
|
|
|
"ac_cv_c_endian=${if stdenv.hostPlatform.isBigEndian then "big" else "little"}"
|
|
|
|
];
|
|
|
|
|
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
|
|
|
|
2020-08-11 14:57:57 +02:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=deprecated-declarations" ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin "-Wno-error";
|
2016-08-24 21:42:08 +02:00
|
|
|
|
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";
|
2020-04-01 03:11:51 +02:00
|
|
|
repositories.git = "https://github.com/memcached/memcached.git";
|
2020-03-23 19:49:34 +01: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
|
|
|
};
|
2020-04-07 19:53:16 +02:00
|
|
|
passthru.tests = {
|
|
|
|
smoke-tests = nixosTests.memcached;
|
|
|
|
};
|
2012-03-29 00:30:13 +02:00
|
|
|
}
|