34 lines
953 B
Nix
34 lines
953 B
Nix
{stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.6.6";
|
|
pname = "memcached";
|
|
|
|
src = fetchurl {
|
|
url = "https://memcached.org/files/${pname}-${version}.tar.gz";
|
|
sha256 = "1xrj7vy05nc6bky4wnrmrbxfibvk5vq4dp2fwk4jk4amzbn0x3wh";
|
|
};
|
|
|
|
configureFlags = [
|
|
"ac_cv_c_endian=${if stdenv.hostPlatform.isBigEndian then "big" else "little"}"
|
|
];
|
|
|
|
buildInputs = [cyrus_sasl libevent];
|
|
|
|
hardeningEnable = [ "pie" ];
|
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-Wno-error";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A distributed memory object caching system";
|
|
repositories.git = "https://github.com/memcached/memcached.git";
|
|
homepage = "http://memcached.org/";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.coconnor ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
passthru.tests = {
|
|
smoke-tests = nixosTests.memcached;
|
|
};
|
|
}
|