nixpkgs/pkgs/servers/memcached/default.nix

35 lines
995 B
Nix
Raw Normal View History

2020-04-07 17:53:16 +00:00
{stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }:
2014-03-13 12:38:23 +00:00
stdenv.mkDerivation rec {
2020-05-22 12:31:39 +00:00
version = "1.6.6";
pname = "memcached";
src = fetchurl {
url = "https://memcached.org/files/${pname}-${version}.tar.gz";
2020-05-22 12:31:39 +00:00
sha256 = "1xrj7vy05nc6bky4wnrmrbxfibvk5vq4dp2fwk4jk4amzbn0x3wh";
};
2018-12-11 22:17:11 +00:00
configureFlags = [
"ac_cv_c_endian=${if stdenv.hostPlatform.isBigEndian then "big" else "little"}"
];
buildInputs = [cyrus_sasl libevent];
hardeningEnable = [ "pie" ];
2016-02-26 23:13:13 +00:00
2020-08-11 12:57:57 +00:00
NIX_CFLAGS_COMPILE = [ "-Wno-error=deprecated-declarations" ]
++ stdenv.lib.optional stdenv.isDarwin "-Wno-error";
2015-06-10 11:00:11 +00:00
meta = with stdenv.lib; {
description = "A distributed memory object caching system";
repositories.git = "https://github.com/memcached/memcached.git";
homepage = "http://memcached.org/";
2015-06-10 11:00:11 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.coconnor ];
platforms = platforms.linux ++ platforms.darwin;
};
2020-04-07 17:53:16 +00:00
passthru.tests = {
smoke-tests = nixosTests.memcached;
};
}