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

23 lines
551 B
Nix
Raw Normal View History

2015-03-12 01:49:17 +00:00
{ stdenv, fetchFromGitHub, cmake, openssl, popt, xmlto }:
2013-12-13 16:10:06 +00:00
stdenv.mkDerivation rec {
pname = "rabbitmq-c";
version = "0.9.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}";
sha256 = "1mhzxyh9pmpxjjbyy8hd34gm39sxf73r1ldk8zjfsfbs26ggrppz";
2013-12-13 16:10:06 +00:00
};
buildInputs = [ cmake openssl popt xmlto ];
2015-03-12 01:49:17 +00:00
meta = with stdenv.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
};
}