summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2023-07-03 14:00:54 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2023-07-03 14:00:54 +0200
commitb5c1e285a6ead67d307ddd3596d229fdb3ae6f48 (patch)
tree7d8ed6bd8ebc45e701e03121367b4c26891e4638
parentab37fd7f9db8ad5af2527ba4873d1ec788d6b5a4 (diff)
downloadnixpkgs-b5c1e285a6ead67d307ddd3596d229fdb3ae6f48.tar
nixpkgs-b5c1e285a6ead67d307ddd3596d229fdb3ae6f48.tar.gz
nixpkgs-b5c1e285a6ead67d307ddd3596d229fdb3ae6f48.tar.bz2
nixpkgs-b5c1e285a6ead67d307ddd3596d229fdb3ae6f48.tar.lz
nixpkgs-b5c1e285a6ead67d307ddd3596d229fdb3ae6f48.tar.xz
nixpkgs-b5c1e285a6ead67d307ddd3596d229fdb3ae6f48.tar.zst
nixpkgs-b5c1e285a6ead67d307ddd3596d229fdb3ae6f48.zip
roundcube: 1.6.1 -> 1.6.2
ChangeLog: https://github.com/roundcube/roundcubemail/releases/tag/1.6.2
-rw-r--r--pkgs/servers/roundcube/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/roundcube/default.nix b/pkgs/servers/roundcube/default.nix
index 288aa6f4e78..ee9fff23074 100644
--- a/pkgs/servers/roundcube/default.nix
+++ b/pkgs/servers/roundcube/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "roundcube";
-  version = "1.6.1";
+  version = "1.6.2";
 
   src = fetchurl {
     url = "https://github.com/roundcube/roundcubemail/releases/download/${version}/roundcubemail-${version}-complete.tar.gz";
-    sha256 = "sha256-RsL2ujS8t+V+R8sDS/M45fx9zO3dqSEqLvO9MUbZe+0=";
+    sha256 = "sha256-yJgwfZXMSEGM+VUX71K1sAiMUAFPZ6bvgVdjQoqAQ/A=";
   };
 
   patches = [ ./0001-Don-t-resolve-symlinks-when-trying-to-find-INSTALL_P.patch ];