Merge pull request #63986 from r-ryantm/auto-update/beanstalkd

beanstalkd: 1.10 -> 1.11
This commit is contained in:
Aaron Andersen 2019-07-01 08:15:46 -04:00 committed by GitHub
commit 5fa05a42a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,13 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "1.10";
version = "1.11";
name = "beanstalkd-${version}";
installPhase=''make install "PREFIX=$out"'';
src = fetchurl {
url = "https://github.com/kr/beanstalkd/archive/v${version}.tar.gz";
sha256 = "0n9dlmiddcfl7i0f1lwfhqiwyvf26493fxfcmn8jm30nbqciwfwj";
sha256 = "0i65d0pln1p6wxghzwziz2k8vafvdgjq6yc962ayzs80kpj18d2y";
};
hardeningDisable = [ "fortify" ];