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

30 lines
724 B
Nix
Raw Normal View History

2018-04-01 01:52:55 +01:00
{ stdenv, fetchFromGitHub, openssl }:
2017-04-10 12:00:35 +01:00
stdenv.mkDerivation rec {
pname = "libamqpcpp";
2020-05-06 22:51:24 +01:00
version = "4.1.7";
2017-04-10 12:00:35 +01:00
src = fetchFromGitHub {
owner = "CopernicaMarketingSoftware";
repo = "AMQP-CPP";
rev = "v${version}";
2020-05-06 22:51:24 +01:00
sha256 = "16xgl0yqzqkqfrz7x9rbbv8rj5rg5jlz4a7apj9igqb58q0w362x";
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;
meta = with stdenv.lib; {
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;
};
}