summary refs log tree commit diff
path: root/pkgs/servers/memcached/default.nix
blob: 36ce54b53ef912b1006555a7d02bd5bd4467c21e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 ];
  };
}