1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 16:26:48 -04:00
nixpkgs/pkgs/servers/beanstalkd/default.nix

24 lines
588 B
Nix
Raw Normal View History

2013-11-24 17:26:56 -05:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2014-08-05 08:56:02 -04:00
version = "1.10";
2013-11-24 17:26:56 -05: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 08:56:02 -04:00
sha256 = "0n9dlmiddcfl7i0f1lwfhqiwyvf26493fxfcmn8jm30nbqciwfwj";
2013-11-24 17:26:56 -05:00
};
hardeningDisable = [ "fortify" ];
2016-02-08 12:27:52 -05:00
2013-11-24 17:26:56 -05:00
meta = with stdenv.lib; {
homepage = http://kr.github.io/beanstalkd/;
2014-11-11 08:20:43 -05:00
description = "A simple, fast work queue";
2013-11-24 17:26:56 -05:00
license = licenses.mit;
maintainers = [ maintainers.zimbatm ];
platforms = platforms.all;
};
}