1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 22:20:51 +00:00
nixpkgs/pkgs/servers/memcached/default.nix

31 lines
869 B
Nix
Raw Normal View History

{stdenv, fetchurl, cyrus_sasl, libevent}:
2014-03-13 12:38:23 +00:00
stdenv.mkDerivation rec {
2019-04-18 19:32:14 +01:00
version = "1.5.13";
2018-01-04 01:15:07 +00:00
name = "memcached-${version}";
src = fetchurl {
url = "https://memcached.org/files/${name}.tar.gz";
2019-04-18 19:32:14 +01:00
sha256 = "0qsdkjrns4f02lmabq8c7mzl5n4382q2p6a0dvmsjdcpjisagqb1";
};
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
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-Wno-error";
2015-06-10 12:00:11 +01: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 12:00:11 +01:00
license = licenses.bsd3;
maintainers = [ maintainers.coconnor ];
platforms = platforms.linux ++ platforms.darwin;
};
}