2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, openssl }:
|
2017-04-10 12:00:35 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libamqpcpp";
|
2021-01-22 14:18:51 +00:00
|
|
|
version = "4.3.11";
|
2017-04-10 12:00:35 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "CopernicaMarketingSoftware";
|
|
|
|
repo = "AMQP-CPP";
|
|
|
|
rev = "v${version}";
|
2021-01-22 14:18:51 +00:00
|
|
|
sha256 = "sha256-ZEvzZ++0f7Kf3iVbf3vQbyE8yd/dasU+dSxDDUu8Xug=";
|
2017-04-10 12:00:35 +01:00
|
|
|
};
|
|
|
|
|
2018-04-01 01:52:55 +01:00
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
2017-04-10 12:00:35 +01:00
|
|
|
patches = [ ./libamqpcpp-darwin.patch ];
|
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2017-04-10 12:00:35 +01:00
|
|
|
description = "Library for communicating with a RabbitMQ server";
|
2020-03-01 13:37:00 +00:00
|
|
|
homepage = "https://github.com/CopernicaMarketingSoftware/AMQP-CPP";
|
2017-04-10 12:00:35 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.mjp ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|