mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
30 lines
722 B
Nix
30 lines
722 B
Nix
{ lib, stdenv, fetchFromGitHub, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libamqpcpp";
|
|
version = "4.3.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CopernicaMarketingSoftware";
|
|
repo = "AMQP-CPP";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-veiD2RrJ08HYZ1Jy8EUe6ct2qh7a2xZCn3TTM+Hvu+0=";
|
|
};
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
patches = [ ./libamqpcpp-darwin.patch ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Library for communicating with a RabbitMQ server";
|
|
homepage = "https://github.com/CopernicaMarketingSoftware/AMQP-CPP";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.mjp ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|