Merge pull request #3470 from tailhook/beanstalkd_1.10

beanstalkd: upgrade to v1.10
This commit is contained in:
Rob Vermaas 2014-08-06 17:03:54 +02:00
commit 9092499154

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "1.9";
version = "1.10";
name = "beanstalkd-${version}";
installPhase=''make install "PREFIX=$out"'';
src = fetchurl {
url = "https://github.com/kr/beanstalkd/archive/v${version}.tar.gz";
sha256 = "158e6d6090c0afac7ee17b9f22713506b3e870dc04a738517282e2e262afb9eb";
sha256 = "0n9dlmiddcfl7i0f1lwfhqiwyvf26493fxfcmn8jm30nbqciwfwj";
};
meta = with stdenv.lib; {