about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-11-07 05:36:36 -0500
committerGitHub <noreply@github.com>2021-11-07 05:36:36 -0500
commit412a7253903a105b9f20eee7070876a951f8f08d (patch)
tree797be24336f84eddb36c27155edfaac80250452e /pkgs
parent8435e4c9f42b2c25432a27d036a14eb93201037c (diff)
parent6f9c942585613f3dd4e7662ae906d20911d9b49a (diff)
Merge pull request #144937 from lostnet/couch321
couchdb3: 3.2.0 -> 3.2.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/http/couchdb/3.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/servers/http/couchdb/3.nix b/pkgs/servers/http/couchdb/3.nix
index 50d4012297fc1..4a7144a8e185a 100644
--- a/pkgs/servers/http/couchdb/3.nix
+++ b/pkgs/servers/http/couchdb/3.nix
@@ -1,16 +1,16 @@
 { lib, stdenv, fetchurl, erlang, icu, openssl, spidermonkey_78
-, coreutils, bash, makeWrapper, python3 }:
+, coreutils, bash, makeWrapper, python3, nixosTests }:
 
 stdenv.mkDerivation rec {
   pname = "couchdb";
-  version = "3.2.0";
+  version = "3.2.1";
 
 
   # when updating this, please consider bumping the erlang/OTP version
   # in all-packages.nix
   src = fetchurl {
     url = "mirror://apache/couchdb/source/${version}/apache-${pname}-${version}.tar.gz";
-    sha256 = "035hy76399yy32rxl536gv7nh8ijihqxhhh5cxn95c3bm97mgslb";
+    sha256 = "1y5cfic88drlr9qiwyj2p8xc9m9hcbvw77j5lwbp0cav78f2vphi";
   };
 
   buildInputs = [ erlang icu openssl spidermonkey_78 (python3.withPackages(ps: with ps; [ requests ]))];
@@ -28,6 +28,10 @@ stdenv.mkDerivation rec {
     cp -r rel/couchdb/* $out
   '';
 
+  passthru.tests = {
+    inherit (nixosTests) couchdb;
+  };
+
   meta = with lib; {
     description = "A database that uses JSON for documents, JavaScript for MapReduce queries, and regular HTTP for an API";
     homepage = "http://couchdb.apache.org";