Merge pull request #65892 from r-ryantm/auto-update/couchdb
couchdb2: 2.3.0 -> 2.3.1
This commit is contained in:
commit
aff691af10
@ -1,19 +1,20 @@
|
|||||||
{ stdenv, fetchurl, erlang, icu, openssl, spidermonkey
|
{ stdenv, fetchurl, erlang, icu, openssl, spidermonkey
|
||||||
, coreutils, bash, makeWrapper }:
|
, coreutils, bash, makeWrapper, python3 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "couchdb-${version}";
|
name = "couchdb-${version}";
|
||||||
version = "2.3.0";
|
version = "2.3.1";
|
||||||
|
|
||||||
|
|
||||||
# when updating this, please consider bumping the OTP version
|
# when updating this, please consider bumping the OTP version
|
||||||
# in all-packages.nix
|
# in all-packages.nix
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://apache/couchdb/source/${version}/apache-${name}.tar.gz";
|
url = "mirror://apache/couchdb/source/${version}/apache-${name}.tar.gz";
|
||||||
sha256 = "0lpk64n6fip85j1jz59kq20jdliwv6mh8j2h5zyxjn5i8b86hf0b";
|
sha256 = "0z926hjqyhxhyr65kqxwpmp80nyfqbig6d9dy8dqflpb87n8rss3";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
buildInputs = [ erlang icu openssl spidermonkey ];
|
buildInputs = [ erlang icu openssl spidermonkey (python3.withPackages(ps: with ps; [ requests ]))];
|
||||||
|
|
||||||
patches = [ ./jsapi.patch ];
|
patches = [ ./jsapi.patch ];
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user