nixpkgs/pkgs/servers/memcached/default.nix

27 lines
755 B
Nix
Raw Normal View History

{stdenv, fetchurl, cyrus_sasl, libevent}:
2014-03-13 12:38:23 +00:00
stdenv.mkDerivation rec {
2018-01-04 01:15:07 +00:00
version = "1.5.4";
name = "memcached-${version}";
src = fetchurl {
2014-03-13 12:38:23 +00:00
url = "http://memcached.org/files/${name}.tar.gz";
2018-01-04 01:15:07 +00:00
sha256 = "1m03fhzq1f9byk2agccsr0x458niqqjpips5mbcgzhm4kylczhz0";
};
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;
};
}