nixpkgs/pkgs/development/libraries/rabbitmq-c/default.nix

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

24 lines
578 B
Nix
Raw Normal View History

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