mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
53b389327e
Close #12446.
25 lines
580 B
Nix
25 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;
|
|
};
|
|
}
|