2021-01-11 07:54:33 +00:00
|
|
|
{lib, stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }:
|
2012-03-28 22:30:13 +00:00
|
|
|
|
2014-03-13 12:38:23 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2023-06-27 23:14:47 +00:00
|
|
|
version = "1.6.21";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "memcached";
|
2012-03-28 22:30:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://memcached.org/files/${pname}-${version}.tar.gz";
|
2023-06-27 23:14:47 +00:00
|
|
|
sha256 = "sha256-x4iYDvxBfdXZPEQrHIuHafsgGIlsKd44h9IqLxQ9ou4=";
|
2012-03-28 22:30:13 +00:00
|
|
|
};
|
|
|
|
|
2018-12-11 22:17:11 +00:00
|
|
|
configureFlags = [
|
|
|
|
"ac_cv_c_endian=${if stdenv.hostPlatform.isBigEndian then "big" else "little"}"
|
|
|
|
];
|
|
|
|
|
2012-03-28 22:30:13 +00:00
|
|
|
buildInputs = [cyrus_sasl libevent];
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-26 23:13:13 +00:00
|
|
|
|
2023-02-20 15:17:34 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = toString ([ "-Wno-error=deprecated-declarations" ]
|
|
|
|
++ lib.optional stdenv.isDarwin "-Wno-error");
|
2016-08-24 19:42:08 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2012-03-28 22:30:13 +00:00
|
|
|
description = "A distributed memory object caching system";
|
2020-03-23 18:49:34 +00:00
|
|
|
homepage = "http://memcached.org/";
|
2015-06-10 11:00:11 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.coconnor ];
|
2015-09-24 15:34:02 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2012-03-28 22:30:13 +00:00
|
|
|
};
|
2020-04-07 17:53:16 +00:00
|
|
|
passthru.tests = {
|
|
|
|
smoke-tests = nixosTests.memcached;
|
|
|
|
};
|
2012-03-28 22:30:13 +00:00
|
|
|
}
|