libamqpcpp: build with cmake support (#349764)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Felix 2024-11-12 13:24:30 +01:00 committed by GitHub
parent b76273df40
commit acbab2f03f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,29 +1,36 @@
{ lib, stdenv, fetchFromGitHub, openssl }:
{
lib,
stdenv,
fetchFromGitHub,
cmake,
openssl,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "libamqpcpp";
version = "4.3.27";
src = fetchFromGitHub {
owner = "CopernicaMarketingSoftware";
repo = "AMQP-CPP";
rev = "v${version}";
rev = "v${finalAttrs.version}";
sha256 = "sha256-iaOXdDIJOBXHyjE07CvU4ApTh71lmtMCyU46AV+MGXQ=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ openssl ];
patches = [ ./libamqpcpp-darwin.patch ];
makeFlags = [ "PREFIX=$(out)" ];
enableParallelBuilding = true;
doCheck = true;
meta = with lib; {
meta = {
description = "Library for communicating with a RabbitMQ server";
homepage = "https://github.com/CopernicaMarketingSoftware/AMQP-CPP";
license = licenses.asl20;
maintainers = [ maintainers.mjp ];
platforms = platforms.all;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ mjp ];
platforms = lib.platforms.all;
};
}
})