mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
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.
21 lines
656 B
Nix
21 lines
656 B
Nix
{ stdenv, fetchurl, unzip, autoconf, automake, libtool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "hyperleveldb-${version}";
|
|
version = "1.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/rescrv/HyperLevelDB/archive/releases/${version}.zip";
|
|
sha256 = "0m5fwl9sc7c6m2zm3zjlxxg7f602gnaryikxgflahhdccdvvr56y";
|
|
};
|
|
buildInputs = [ unzip autoconf automake libtool ];
|
|
preConfigure = "autoreconf -i";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = ''A fork of LevelDB intended to meet the needs of
|
|
HyperDex while remaining compatible with LevelDB.'';
|
|
homepage = https://github.com/rescrv/HyperLevelDB;
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|