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

24 lines
615 B
Nix
Raw Normal View History

2015-03-12 02:49:17 +01:00
{ stdenv, fetchFromGitHub, cmake, openssl, popt, xmlto }:
2013-12-13 17:10:06 +01:00
stdenv.mkDerivation rec {
name = "rabbitmq-c-${version}";
2015-03-12 02:49:17 +01:00
version = "0.6.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}";
sha256 = "00264mvwwcibd36w9a3s3cv2x7pvz88al64q2maaw1kbd9mg1ky5";
2013-12-13 17:10:06 +01:00
};
buildInputs = [ cmake openssl popt xmlto ];
2015-03-12 02:49:17 +01:00
meta = with stdenv.lib; {
2013-12-13 17:10:06 +01:00
description = "RabbitMQ C AMQP client library";
homepage = https://github.com/alanxz/rabbitmq-c;
2015-03-12 02:49:17 +01:00
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ wkennington ];
2013-12-13 17:10:06 +01:00
};
}