nixpkgs/pkgs/servers/memcached/default.nix

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

35 lines
963 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }:
2014-03-13 12:38:23 +00:00
stdenv.mkDerivation rec {
2024-02-28 10:13:13 +00:00
version = "1.6.24";
pname = "memcached";
src = fetchurl {
url = "https://memcached.org/files/${pname}-${version}.tar.gz";
2024-02-28 10:13:13 +00:00
sha256 = "sha256-+QXsCzhDKoqAvM0E6Q501ey6mLj2R+XWHku1QIWnpCI=";
};
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
env.NIX_CFLAGS_COMPILE = toString ([ "-Wno-error=deprecated-declarations" ]
++ lib.optional stdenv.isDarwin "-Wno-error");
meta = with lib; {
description = "A distributed memory object caching system";
homepage = "http://memcached.org/";
2015-06-10 11:00:11 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.coconnor ];
platforms = platforms.linux ++ platforms.darwin;
2023-11-27 01:17:53 +00:00
mainProgram = "memcached";
};
2020-04-07 17:53:16 +00:00
passthru.tests = {
smoke-tests = nixosTests.memcached;
};
}