3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #65892 from r-ryantm/auto-update/couchdb

couchdb2: 2.3.0 -> 2.3.1
This commit is contained in:
Marek Mahut 2019-08-18 16:28:41 +02:00 committed by GitHub
commit aff691af10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,19 +1,20 @@
{ stdenv, fetchurl, erlang, icu, openssl, spidermonkey
, coreutils, bash, makeWrapper }:
, coreutils, bash, makeWrapper, python3 }:
stdenv.mkDerivation rec {
name = "couchdb-${version}";
version = "2.3.0";
version = "2.3.1";
# when updating this, please consider bumping the OTP version
# in all-packages.nix
src = fetchurl {
url = "mirror://apache/couchdb/source/${version}/apache-${name}.tar.gz";
sha256 = "0lpk64n6fip85j1jz59kq20jdliwv6mh8j2h5zyxjn5i8b86hf0b";
sha256 = "0z926hjqyhxhyr65kqxwpmp80nyfqbig6d9dy8dqflpb87n8rss3";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ erlang icu openssl spidermonkey ];
buildInputs = [ erlang icu openssl spidermonkey (python3.withPackages(ps: with ps; [ requests ]))];
patches = [ ./jsapi.patch ];
postPatch = ''