nixpkgs/pkgs/servers/memcached/default.nix

34 lines
951 B
Nix
Raw Normal View History

2020-04-07 10:53:16 -07:00
{stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }:
2014-03-13 05:38:23 -07:00
stdenv.mkDerivation rec {
2020-04-05 21:52:39 -07:00
version = "1.6.3";
pname = "memcached";
src = fetchurl {
url = "https://memcached.org/files/${pname}-${version}.tar.gz";
2020-04-05 21:52:39 -07:00
sha256 = "0h0mlg3xz1y889xj6lcsb4sz9bar1birc2wzjf7x4ig31qib6r0w";
};
2018-12-11 14:17:11 -08:00
configureFlags = [
"ac_cv_c_endian=${if stdenv.hostPlatform.isBigEndian then "big" else "little"}"
];
buildInputs = [cyrus_sasl libevent];
hardeningEnable = [ "pie" ];
2016-02-26 15:13:13 -08:00
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-Wno-error";
2015-06-10 04:00:11 -07: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 04:00:11 -07:00
license = licenses.bsd3;
maintainers = [ maintainers.coconnor ];
platforms = platforms.linux ++ platforms.darwin;
};
2020-04-07 10:53:16 -07:00
passthru.tests = {
smoke-tests = nixosTests.memcached;
};
}