2016-01-18 00:04:40 +01:00
|
|
|
{ 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";
|
2015-11-03 15:19:10 +01:00
|
|
|
sha256 = "0b51h1kmkf0s3d9y7wjqgp1pk1rk9i7n8bcgyj01kflzdgafbl0b";
|
2014-12-13 01:20:04 +01:00
|
|
|
};
|
2016-01-18 00:04:40 +01:00
|
|
|
|
2014-12-13 01:20:04 +01:00
|
|
|
buildInputs = [
|
2016-01-18 00:04:40 +01:00
|
|
|
autoreconfHook
|
2014-12-13 01:20:04 +01:00
|
|
|
libe
|
|
|
|
libpo6
|
|
|
|
pkgconfig
|
|
|
|
unzip
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-04-30 17:05:14 +02:00
|
|
|
description = "A high-performance messaging layer";
|
2014-12-13 01:20:04 +01:00
|
|
|
homepage = https://github.com/rescrv/busybee;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|