chezmoi: 2.56.0 -> 2.57.0 (#372077)
[NixPkgs.git] / pkgs / by-name / me / memcached / package.nix
blob52dee4aa95dd2293dbce800b4f3000f6f5868888
1 {lib, stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }:
3 stdenv.mkDerivation rec {
4   version = "1.6.31";
5   pname = "memcached";
7   src = fetchurl {
8     url = "https://memcached.org/files/${pname}-${version}.tar.gz";
9     sha256 = "sha256-INjTObj7H2x5zuIFWdxv+13+6E255Yn06yFPbSyHPvU=";
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.hostPlatform.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   };