nixpkgs/pkgs/servers/beanstalkd/default.nix

24 lines
580 B
Nix
Raw Normal View History

2013-11-24 22:26:56 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2020-06-09 07:52:57 +00:00
version = "1.12";
pname = "beanstalkd";
2013-11-24 22:26:56 +00:00
installPhase=''make install "PREFIX=$out"'';
src = fetchurl {
url = "https://github.com/kr/beanstalkd/archive/v${version}.tar.gz";
2020-06-09 07:52:57 +00:00
sha256 = "0gw8aygysnjzzfjgfzivy5vajla9adg2zcr4h8rrdf0xyykpwfpl";
2013-11-24 22:26:56 +00:00
};
hardeningDisable = [ "fortify" ];
2016-02-08 17:27:52 +00:00
2013-11-24 22:26:56 +00:00
meta = with stdenv.lib; {
homepage = "http://kr.github.io/beanstalkd/";
2014-11-11 13:20:43 +00:00
description = "A simple, fast work queue";
2013-11-24 22:26:56 +00:00
license = licenses.mit;
maintainers = [ maintainers.zimbatm ];
platforms = platforms.all;
};
}