nixpkgs/pkgs/development/libraries/rabbitmq-c/default.nix
Thomas Gerbet 0d84174af5 rabbitmq-c: 0.13.0 -> 0.14.0
Include the "fix" for CVE-2023-35789

Changelog:
https://github.com/alanxz/rabbitmq-c/releases/tag/v0.14.0
2024-04-01 00:04:28 +02:00

24 lines
576 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake, openssl, popt, xmlto }:
stdenv.mkDerivation rec {
pname = "rabbitmq-c";
version = "0.14.0";
src = fetchFromGitHub {
owner = "alanxz";
repo = "rabbitmq-c";
rev = "v${version}";
hash = "sha256-ffdnLEgUg+4G12JntjFag3ZXMvEL42hsrY6VT58ccJ0=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ openssl popt xmlto ];
meta = with lib; {
description = "RabbitMQ C AMQP client library";
homepage = "https://github.com/alanxz/rabbitmq-c";
license = licenses.mit;
platforms = platforms.unix;
};
}