summary refs log tree commit diff
path: root/pkgs/servers/beanstalkd/default.nix
blob: 717ea6306cffcc8899dfe180157477cf1c619f5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
  version = "1.9";
  name = "beanstalkd-${version}";

  installPhase=''make install "PREFIX=$out"'';

  src = fetchurl {
    url = "https://github.com/kr/beanstalkd/archive/v${version}.tar.gz";
    sha256 = "158e6d6090c0afac7ee17b9f22713506b3e870dc04a738517282e2e262afb9eb";
  };

  meta = with stdenv.lib; {
    homepage = http://kr.github.io/beanstalkd/;
    description = "Beanstalk is a simple, fast work queue.";
    license = licenses.mit;
    maintainers = [ maintainers.zimbatm ];
    platforms = platforms.all;
  };
}