ec15b98631
Patch by Corey O'Connor, see http://reviewboard.loegria.net/r/15/ svn path=/nixpkgs/trunk/; revision=33461
21 lines
499 B
Nix
21 lines
499 B
Nix
{stdenv, fetchurl, cyrus_sasl, libevent}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "memcached-1.4.13";
|
|
|
|
src = fetchurl {
|
|
url = http://memcached.googlecode.com/files/memcached-1.4.13.tar.gz;
|
|
sha256 = "0abyy9agjinac56bb1881j3qs6xny7r12slh4wihv2apma3qn2yb";
|
|
};
|
|
|
|
buildInputs = [cyrus_sasl libevent];
|
|
|
|
meta = {
|
|
description = "A distributed memory object caching system";
|
|
homepage = http://memcached.org/;
|
|
license = "bsd";
|
|
maintainers = [ stdenv.lib.maintainers.coconnor ];
|
|
};
|
|
}
|
|
|