2013-11-24 22:26:56 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-01 08:05:59 +01:00
|
|
|
version = "1.11";
|
2019-08-15 13:41:18 +01:00
|
|
|
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";
|
2019-07-01 08:05:59 +01:00
|
|
|
sha256 = "0i65d0pln1p6wxghzwziz2k8vafvdgjq6yc962ayzs80kpj18d2y";
|
2013-11-24 22:26:56 +00:00
|
|
|
};
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "fortify" ];
|
2016-02-08 17:27:52 +00:00
|
|
|
|
2013-11-24 22:26:56 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|