2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, openssl, popt, xmlto }:
|
2013-12-13 17:10:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "rabbitmq-c";
|
2021-04-05 05:39:16 +02:00
|
|
|
version = "0.11.0";
|
2013-12-13 17:10:06 +01:00
|
|
|
|
2015-03-12 02:49:17 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "alanxz";
|
|
|
|
repo = "rabbitmq-c";
|
|
|
|
rev = "v${version}";
|
2021-04-05 05:39:16 +02:00
|
|
|
sha256 = "sha256-u1uOrZRiQOU/6vlLdQHypBRSCo3zw7FC1AI9v3NlBVE=";
|
2013-12-13 17:10:06 +01:00
|
|
|
};
|
|
|
|
|
2020-12-31 08:48:55 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ openssl popt xmlto ];
|
2013-12-13 17:10:06 +01:00
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2013-12-13 17:10:06 +01:00
|
|
|
description = "RabbitMQ C AMQP client library";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/alanxz/rabbitmq-c";
|
2015-03-12 02:49:17 +01:00
|
|
|
license = licenses.mit;
|
2018-03-31 00:30:39 +02:00
|
|
|
platforms = platforms.unix;
|
2013-12-13 17:10:06 +01:00
|
|
|
};
|
|
|
|
}
|