nixpkgs/pkgs/development/libraries/libamqpcpp/default.nix

30 lines
722 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, openssl }:
2017-04-10 11:00:35 +00:00
stdenv.mkDerivation rec {
pname = "libamqpcpp";
2021-05-16 06:07:34 +00:00
version = "4.3.12";
2017-04-10 11:00:35 +00:00
src = fetchFromGitHub {
owner = "CopernicaMarketingSoftware";
repo = "AMQP-CPP";
rev = "v${version}";
2021-05-16 06:07:34 +00:00
sha256 = "sha256-veiD2RrJ08HYZ1Jy8EUe6ct2qh7a2xZCn3TTM+Hvu+0=";
2017-04-10 11:00:35 +00:00
};
2018-04-01 00:52:55 +00:00
buildInputs = [ openssl ];
2017-04-10 11:00:35 +00:00
patches = [ ./libamqpcpp-darwin.patch ];
makeFlags = [ "PREFIX=$(out)" ];
enableParallelBuilding = true;
meta = with lib; {
2017-04-10 11:00:35 +00: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 11:00:35 +00:00
license = licenses.asl20;
maintainers = [ maintainers.mjp ];
platforms = platforms.all;
};
}