Merge pull request #38275 from MikePlayle/master

libamqpcpp: 2.7.4 -> 3.0.0
This commit is contained in:
adisbladis 2018-04-01 23:16:21 +08:00 committed by GitHub
commit 4df450ef28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,18 @@
{ stdenv, fetchFromGitHub }: { stdenv, fetchFromGitHub, openssl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libamqpcpp-${version}"; name = "libamqpcpp-${version}";
version = "2.7.4"; version = "3.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "CopernicaMarketingSoftware"; owner = "CopernicaMarketingSoftware";
repo = "AMQP-CPP"; repo = "AMQP-CPP";
rev = "v${version}"; rev = "v${version}";
sha256 = "0m010bz0axawcpv4d1p1vx7c6r8lg27w2s2vjqpbpg99w35n6c8k"; sha256 = "0n93wy2v2hx9zalpyn8zxsxihh0xpgcd472qwvwsc253y97v8ngv";
}; };
buildInputs = [ openssl ];
patches = [ ./libamqpcpp-darwin.patch ]; patches = [ ./libamqpcpp-darwin.patch ];
makeFlags = [ "PREFIX=$(out)" ]; makeFlags = [ "PREFIX=$(out)" ];