beanstalkd: upgrade to v1.10

This commit is contained in:
Paul Colomiets 2014-08-05 15:56:02 +03:00
parent 69b426a1eb
commit d2d4b8477f

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; {