2012-03-28 23:30:13 +01:00
|
|
|
{stdenv, fetchurl, cyrus_sasl, libevent}:
|
|
|
|
|
2014-03-13 12:38:23 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-07 21:50:46 +01:00
|
|
|
name = "memcached-1.4.20";
|
2012-03-28 23:30:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-03-13 12:38:23 +00:00
|
|
|
url = "http://memcached.org/files/${name}.tar.gz";
|
2014-10-07 21:50:46 +01:00
|
|
|
sha256 = "0620llasj8xgffk6hk2ml15z0c5i34455wwg60i1a2zdir023l95";
|
2012-03-28 23:30:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [cyrus_sasl libevent];
|
|
|
|
|
2015-06-10 12:00:11 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-03-28 23:30:13 +01:00
|
|
|
description = "A distributed memory object caching system";
|
2013-12-09 22:51:04 +00:00
|
|
|
repositories.git = https://github.com/memcached/memcached.git;
|
2012-03-28 23:30:13 +01:00
|
|
|
homepage = http://memcached.org/;
|
2015-06-10 12:00:11 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.coconnor ];
|
2015-09-24 16:34:02 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2012-03-28 23:30:13 +01:00
|
|
|
};
|
|
|
|
}
|