Add memcached
Patch by Corey O'Connor, see http://reviewboard.loegria.net/r/15/ svn path=/nixpkgs/trunk/; revision=33461
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
{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 ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user