nixpkgs/pkgs/servers/beanstalkd/default.nix

22 lines
565 B
Nix
Raw Normal View History

2013-11-24 23:26:56 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2014-08-05 14:56:02 +02:00
version = "1.10";
2013-11-24 23:26:56 +01:00
name = "beanstalkd-${version}";
installPhase=''make install "PREFIX=$out"'';
src = fetchurl {
url = "https://github.com/kr/beanstalkd/archive/v${version}.tar.gz";
2014-08-05 14:56:02 +02:00
sha256 = "0n9dlmiddcfl7i0f1lwfhqiwyvf26493fxfcmn8jm30nbqciwfwj";
2013-11-24 23:26:56 +01:00
};
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;
};
}