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:
Yury G. Kudryashov 2012-03-28 22:30:13 +00:00
parent 3551d159d8
commit ec15b98631
3 changed files with 23 additions and 0 deletions

View file

@ -10,6 +10,7 @@
bjg = "Brian Gough <bjg@gnu.org>";
bluescreen303 = "Mathijs Kwik <mathijs@bluescreen303.nl>";
chaoflow = "Florian Friesdorf <flo@chaoflow.net>";
coconnor = "Corey O'Connor <coreyoconnor@gmail.com>";
eelco = "Eelco Dolstra <e.dolstra@tudelft.nl>";
goibhniu = "Cillian de Róiste <cillian.deroiste@gmail.com>";
guibert = "David Guibert <david.guibert@gmail.com>";

View file

@ -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 ];
};
}

View file

@ -5100,6 +5100,8 @@ let
ffmpeg = ffmpeg_0_6_90;
};
memcached = callPackage ../servers/memcached {};
mod_python = callPackage ../servers/http/apache-modules/mod_python { };
mod_fastcgi = callPackage ../servers/http/apache-modules/mod_fastcgi { };