nixpkgs/pkgs/servers/nosql/hyperdex/libpo6.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

20 lines
547 B
Nix

{ stdenv, fetchurl, unzip, autoconf, automake, libtool }:
stdenv.mkDerivation rec {
name = "libpo6-${version}";
version = "0.5.2";
src = fetchurl {
url = "https://github.com/rescrv/po6/archive/releases/${version}.zip";
sha256 = "17grzkh6aw1f68qvkhivbb6vwbm6jd41ysbfn88pypf5lczxrxly";
};
buildInputs = [ unzip autoconf automake libtool ];
preConfigure = "autoreconf -i";
meta = with stdenv.lib; {
description = "POSIX wrappers for C++";
homepage = https://github.com/rescrv/po6;
license = licenses.bsd3;
};
}