2016-01-17 15:04:40 -08:00
|
|
|
{ stdenv, fetchurl, unzip, autoreconfHook, libpo6, libe, pkgconfig }:
|
2014-12-12 16:20:04 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "busybee-${version}";
|
|
|
|
version = "0.5.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/rescrv/busybee/archive/releases/${version}.zip";
|
2015-11-03 06:19:10 -08:00
|
|
|
sha256 = "0b51h1kmkf0s3d9y7wjqgp1pk1rk9i7n8bcgyj01kflzdgafbl0b";
|
2014-12-12 16:20:04 -08:00
|
|
|
};
|
2016-01-17 15:04:40 -08:00
|
|
|
|
2014-12-12 16:20:04 -08:00
|
|
|
buildInputs = [
|
2016-01-17 15:04:40 -08:00
|
|
|
autoreconfHook
|
2014-12-12 16:20:04 -08:00
|
|
|
libe
|
|
|
|
libpo6
|
|
|
|
pkgconfig
|
|
|
|
unzip
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-04-30 08:05:14 -07:00
|
|
|
description = "A high-performance messaging layer";
|
2014-12-12 16:20:04 -08:00
|
|
|
homepage = https://github.com/rescrv/busybee;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|