about summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorMarek Mahut <marek.mahut@gmail.com>2019-08-18 16:28:41 +0200
committerGitHub <noreply@github.com>2019-08-18 16:28:41 +0200
commitaff691af1098810fe10c923c206beeae686a9924 (patch)
tree7e8cb801ca219ec374fdb8c5873c0964983bd39c /pkgs/servers/http
parent6f27f6c49414fac2f5b02adbb0bda899b0628572 (diff)
parent1b8da7d755d656f17c733675ccd4e02c5b89ab81 (diff)
downloadnixlib-aff691af1098810fe10c923c206beeae686a9924.tar
nixlib-aff691af1098810fe10c923c206beeae686a9924.tar.gz
nixlib-aff691af1098810fe10c923c206beeae686a9924.tar.bz2
nixlib-aff691af1098810fe10c923c206beeae686a9924.tar.lz
nixlib-aff691af1098810fe10c923c206beeae686a9924.tar.xz
nixlib-aff691af1098810fe10c923c206beeae686a9924.tar.zst
nixlib-aff691af1098810fe10c923c206beeae686a9924.zip
Merge pull request #65892 from r-ryantm/auto-update/couchdb
couchdb2: 2.3.0 -> 2.3.1
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/couchdb/2.0.0.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/servers/http/couchdb/2.0.0.nix b/pkgs/servers/http/couchdb/2.0.0.nix
index cb630c266880..b3c4abfed906 100644
--- a/pkgs/servers/http/couchdb/2.0.0.nix
+++ b/pkgs/servers/http/couchdb/2.0.0.nix
@@ -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 = ''