nixpkgs/pkgs/servers/nosql/hyperdex/busybee.nix
2016-01-18 10:45:31 +01:00

26 lines
580 B
Nix

{ stdenv, fetchurl, unzip, autoreconfHook, libpo6, libe, pkgconfig }:
stdenv.mkDerivation rec {
name = "busybee-${version}";
version = "0.5.2";
src = fetchurl {
url = "https://github.com/rescrv/busybee/archive/releases/${version}.zip";
sha256 = "0b51h1kmkf0s3d9y7wjqgp1pk1rk9i7n8bcgyj01kflzdgafbl0b";
};
buildInputs = [
autoreconfHook
libe
libpo6
pkgconfig
unzip
];
meta = with stdenv.lib; {
description = "A high-performance messaging layer";
homepage = https://github.com/rescrv/busybee;
license = licenses.bsd3;
};
}