nixpkgs/pkgs/servers/memcached/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
917 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }:
2014-03-13 16:38:23 +04:00
stdenv.mkDerivation rec {
2022-08-06 04:07:56 +03:00
version = "1.6.16";
pname = "memcached";
src = fetchurl {
url = "https://memcached.org/files/${pname}-${version}.tar.gz";
2022-08-06 04:07:56 +03:00
sha256 = "sha256-MFGpO/HdDDry0OWJ/272UR+HY4WjWxjp/4dB5KGrNNo=";
};
2018-12-12 01:17:11 +03:00
configureFlags = [
"ac_cv_c_endian=${if stdenv.hostPlatform.isBigEndian then "big" else "little"}"
];
buildInputs = [cyrus_sasl libevent];
hardeningEnable = [ "pie" ];
2016-02-27 02:13:13 +03:00
2020-08-11 15:57:57 +03:00
NIX_CFLAGS_COMPILE = [ "-Wno-error=deprecated-declarations" ]
2021-01-15 10:07:56 +03:00
++ lib.optional stdenv.isDarwin "-Wno-error";
meta = with lib; {
description = "A distributed memory object caching system";
homepage = "http://memcached.org/";
2015-06-10 14:00:11 +03:00
license = licenses.bsd3;
maintainers = [ maintainers.coconnor ];
platforms = platforms.linux ++ platforms.darwin;
};
2020-04-07 20:53:16 +03:00
passthru.tests = {
smoke-tests = nixosTests.memcached;
};
}