2456dd0246
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.
19 lines
627 B
Nix
19 lines
627 B
Nix
{ stdenv, fetchurl, unzip, autoconf, automake, libtool, libpo6, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libe-${version}";
|
|
version = "0.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/rescrv/e/archive/releases/${version}.zip";
|
|
sha256 = "18xm0hcnqdf0ipfn19jrgzqsxij5xjbbnihhzc57n4v7yfdca1w3";
|
|
};
|
|
buildInputs = [ unzip autoconf automake libtool libpo6 pkgconfig ];
|
|
preConfigure = "autoreconf -i";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library containing high-performance datastructures and utilities for C++";
|
|
homepage = https://github.com/rescrv/e;
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|