nixpkgs/pkgs/servers/nosql/hyperdex/busybee.nix

26 lines
580 B
Nix
Raw Normal View History

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