summary refs log tree commit diff
path: root/pkgs/servers/nosql/hyperdex/busybee.nix
blob: 19482db6f5a6597c80dfb7dda140be682ee3be9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchurl, unzip, autoconf, automake, libtool,
  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 = "0gr5h2j9rzwarblgcgddnxj39i282rvgn9vqlrcd60dx8c4dkm29";
  };
  buildInputs = [
    autoconf
    automake
    libe
    libpo6
    libtool
    pkgconfig
    unzip
  ];
  preConfigure = "autoreconf -i";

  meta = with stdenv.lib; {
    description = "BusyBee is a high-performance messaging layer.";
    homepage = https://github.com/rescrv/busybee;
    license = licenses.bsd3;
  };
}