mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
58a491aa80
fixes remote DoS/possibly code execution, as described in https://github.com/memcached/memcached/issues/629
31 lines
872 B
Nix
31 lines
872 B
Nix
{stdenv, fetchurl, cyrus_sasl, libevent}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.6.2";
|
|
pname = "memcached";
|
|
|
|
src = fetchurl {
|
|
url = "https://memcached.org/files/${pname}-${version}.tar.gz";
|
|
sha256 = "12qn8m0jdvdckz53m2akrvixbrn64g5kv6r4hl5vx286qhc02wh6";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|