Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / memcached / default.nix
blobccc9fff51ace682434f3f547d1cadb724ad66385
1 {lib, stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }:
3 stdenv.mkDerivation rec {
4   version = "1.6.27";
5   pname = "memcached";
7   src = fetchurl {
8     url = "https://memcached.org/files/${pname}-${version}.tar.gz";
9     sha256 = "sha256-dP4UR8hmit+RD6epKftjWKr0pm73NOdRxbgSgHGw97U=";
10   };
12   configureFlags = [
13      "ac_cv_c_endian=${if stdenv.hostPlatform.isBigEndian then "big" else "little"}"
14   ];
16   buildInputs = [cyrus_sasl libevent];
18   hardeningEnable = [ "pie" ];
20   env.NIX_CFLAGS_COMPILE = toString ([ "-Wno-error=deprecated-declarations" ]
21     ++ lib.optional stdenv.isDarwin "-Wno-error");
23   meta = with lib; {
24     description = "Distributed memory object caching system";
25     homepage = "http://memcached.org/";
26     license = licenses.bsd3;
27     maintainers = [ maintainers.coconnor ];
28     platforms = platforms.linux ++ platforms.darwin;
29     mainProgram = "memcached";
30   };
31   passthru.tests = {
32     smoke-tests = nixosTests.memcached;
33   };