mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
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:
parent
3551d159d8
commit
ec15b98631
@ -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>";
|
||||
|
20
pkgs/servers/memcached/default.nix
Normal file
20
pkgs/servers/memcached/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user