From c5cd0ac769d51c7d03c72057c787fcf5f2b78dc0 Mon Sep 17 00:00:00 2001 From: Cassie Cheung Date: Mon, 10 Feb 2025 16:30:22 +0800 Subject: [PATCH 1/2] roundcube: temporarily disable symlinks check At the current release upstream ships a broken symlink. Disable the check until the next release which should contain a proper .htaccess file. --- pkgs/servers/roundcube/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/servers/roundcube/default.nix b/pkgs/servers/roundcube/default.nix index 15b6ca2544e9..f8b50b66fcea 100644 --- a/pkgs/servers/roundcube/default.nix +++ b/pkgs/servers/roundcube/default.nix @@ -21,6 +21,9 @@ stdenv.mkDerivation rec { dontBuild = true; + # FIXME: this should be removed after upstream releases the update forcing the use of public_html. + dontCheckForBrokenSymlinks = true; + installPhase = '' mkdir $out cp -r * $out/ From 30f46aecba53aa1966a797c3240668d5bf418f67 Mon Sep 17 00:00:00 2001 From: Cassie Cheung Date: Mon, 10 Feb 2025 16:30:17 +0800 Subject: [PATCH 2/2] roundcube: 1.6.9 -> 1.6.10 --- pkgs/servers/roundcube/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/roundcube/default.nix b/pkgs/servers/roundcube/default.nix index f8b50b66fcea..b88ba3a60819 100644 --- a/pkgs/servers/roundcube/default.nix +++ b/pkgs/servers/roundcube/default.nix @@ -10,11 +10,11 @@ stdenv.mkDerivation rec { pname = "roundcube"; - version = "1.6.9"; + version = "1.6.10"; src = fetchurl { url = "https://github.com/roundcube/roundcubemail/releases/download/${version}/roundcubemail-${version}-complete.tar.gz"; - sha256 = "sha256-thpfXCL4kMKZ6TWqz88IcGdpkNiuv/DWzf8HW/F8708="; + sha256 = "sha256-A8+sL0lN2Zwlw177CtTTM/JI4y8l9CBPvI8nMb+68OQ="; }; patches = [ ./0001-Don-t-resolve-symlinks-when-trying-to-find-INSTALL_P.patch ];