nixpkgs/pkgs/servers/nosql/hyperdex/busybee.nix
Joachim Fasting 2456dd0246 hyperdex: blindly fix hashes of local dependencies
This patch blindly fixes the source archive checksums for the local dependencies
of hyperdex. I have not looked into why those hashes changed, but I have
verified that the hyperdex package now builds successfully.
2015-11-03 15:22:50 +01:00

29 lines
647 B
Nix

{ 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 = "0b51h1kmkf0s3d9y7wjqgp1pk1rk9i7n8bcgyj01kflzdgafbl0b";
};
buildInputs = [
autoconf
automake
libe
libpo6
libtool
pkgconfig
unzip
];
preConfigure = "autoreconf -i";
meta = with stdenv.lib; {
description = "A high-performance messaging layer";
homepage = https://github.com/rescrv/busybee;
license = licenses.bsd3;
};
}