wiredtiger: 2.6.1 -> 3.2.0 (#67170)

* wiredtiger: 2.6.1 -> 3.2.0

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/wiredtiger/versions

* wiredtiger: removing broken tag

* wiredtiger: removing prePatch for darwin
This commit is contained in:
R. RyanTM 2019-08-24 06:53:02 -07:00 committed by Samuel Leathers
parent 5f06052e75
commit d7d15fb454

View File

@ -26,13 +26,13 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "wiredtiger-${version}"; name = "wiredtiger-${version}";
version = "2.6.1"; version = "3.2.0";
src = fetchFromGitHub { src = fetchFromGitHub {
repo = "wiredtiger"; repo = "wiredtiger";
owner = "wiredtiger"; owner = "wiredtiger";
rev = version; rev = version;
sha256 = "1nj319w3hvkq3za2dz9m0p1w683gycdb392v1jb910bhzpsq30pd"; sha256 = "1s27l51p2p3kbdjmccvlg43i7zx84hhchs3779w9giab4nvd0y19";
}; };
nativeBuildInputs = [ automake autoconf libtool ]; nativeBuildInputs = [ automake autoconf libtool ];
@ -58,17 +58,10 @@ stdenv.mkDerivation rec {
./autogen.sh ./autogen.sh
''; '';
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace api/leveldb/leveldb_wt.h --replace \
'#include "wiredtiger.h"' \
''$'#include "wiredtiger.h"\n#include "pthread.h"'
'';
meta = { meta = {
homepage = http://wiredtiger.com/; homepage = http://wiredtiger.com/;
description = ""; description = "";
license = licenses.gpl2; license = licenses.gpl2;
platforms = intersectLists platforms.unix platforms.x86_64; platforms = intersectLists platforms.unix platforms.x86_64;
broken = true; # Broken by f689a6d1c6796c4a4f116ffec6c4624379e04bc9.
}; };
} }