From a9904d88eee90f217fcbc355761168c645dc4c4f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 10 Nov 2025 00:53:59 +0000 Subject: [PATCH 1/2] couchdb3: 3.5.0 -> 3.5.1 --- pkgs/servers/http/couchdb/3.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/couchdb/3.nix b/pkgs/servers/http/couchdb/3.nix index a8cb95fd82e6..41ba00b16ebd 100644 --- a/pkgs/servers/http/couchdb/3.nix +++ b/pkgs/servers/http/couchdb/3.nix @@ -11,11 +11,11 @@ stdenv.mkDerivation rec { pname = "couchdb"; - version = "3.5.0"; + version = "3.5.1"; src = fetchurl { url = "mirror://apache/couchdb/source/${version}/apache-${pname}-${version}.tar.gz"; - hash = "sha256-api5CpqYC77yw1tJlqjnGi8a5SJ1RshfBMQ2EBvfeL8="; + hash = "sha256-wizzHW2Ro/WqBPDK1JO6vccjITSUy15hcKUH01nFATY="; }; postPatch = '' From 77e74d5f80c55c3da4ef1c2d88e194284371dc3e Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Wed, 4 Feb 2026 23:40:39 +0100 Subject: [PATCH 2/2] couchdb3: fix aarch64-darwin build --- pkgs/servers/http/couchdb/3.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/http/couchdb/3.nix b/pkgs/servers/http/couchdb/3.nix index 41ba00b16ebd..a83ce7727d5b 100644 --- a/pkgs/servers/http/couchdb/3.nix +++ b/pkgs/servers/http/couchdb/3.nix @@ -48,6 +48,12 @@ stdenv.mkDerivation rec { "release" ]; + env.NIX_CFLAGS_COMPILE = lib.concatStringsSep " " ( + lib.optionals stdenv.cc.isClang [ + "-Wno-error=implicit-function-declaration" + ] + ); + installPhase = '' runHook preInstall mkdir -p $out @@ -65,6 +71,5 @@ stdenv.mkDerivation rec { license = lib.licenses.asl20; platforms = lib.platforms.all; maintainers = [ ]; - broken = stdenv.isDarwin && stdenv.isAarch64; }; }