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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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";
2023-04-03 00:38:40 +00:00
version = "4.3.22";
2017-04-10 11:00:35 +00:00
src = fetchFromGitHub {
owner = "CopernicaMarketingSoftware";
repo = "AMQP-CPP";
rev = "v${version}";
2023-04-03 00:38:40 +00:00
sha256 = "sha256-G5UgkINfkUKq0yvke0LPaogPmCMWb+jVR6+YBk0pyic=";
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;
};
}