lol

mongodb: 3.0.6 -> 3.0.7

Use the vendored wiredtiger as the system one is not compatible

+4 -4
+4 -4
pkgs/servers/nosql/mongodb/default.nix
··· 4 4 5 5 with stdenv.lib; 6 6 7 - let version = "3.0.6"; 7 + let version = "3.0.7"; 8 8 system-libraries = [ 9 9 "pcre" 10 - "wiredtiger" 10 + #"wiredtiger" 11 11 "boost" 12 12 "snappy" 13 13 "zlib" ··· 18 18 buildInputs = [ 19 19 sasl boost gperftools pcre snappy 20 20 zlib libyamlcpp sasl openssl libpcap 21 - ] ++ optional stdenv.is64bit wiredtiger; 21 + ]; # ++ optional stdenv.is64bit wiredtiger; 22 22 23 23 other-args = concatStringsSep " " ([ 24 24 # these are opt-in, lol ··· 41 41 42 42 src = fetchurl { 43 43 url = "http://downloads.mongodb.org/src/mongodb-src-r${version}.tar.gz"; 44 - sha256 = "0bc2khi36ck0y7dhppvjp8wy479hzyw34qs0965qj4gd2va6p7v0"; 44 + sha256 = "1rx7faqsq733vdriavdfmvx75nhjq9nm5bgwd3hw1cxzqgkvl99d"; 45 45 }; 46 46 47 47 nativeBuildInputs = [ scons ];