mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
34 lines
953 B
Nix
34 lines
953 B
Nix
{stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.6.3";
|
|
pname = "memcached";
|
|
|
|
src = fetchurl {
|
|
url = "https://memcached.org/files/${pname}-${version}.tar.gz";
|
|
sha256 = "0h0mlg3xz1y889xj6lcsb4sz9bar1birc2wzjf7x4ig31qib6r0w";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|