mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
3b8d6ef293
This is a service release to update the stable version 1.3 of Roundcube Webmail. It contains fixes to several bugs backported from the master branch including a security fix for a reported XSS vulnerability plus updates to ensure compatibility with PHP 7.3 and recent versions of Courier-IMAP, Dovecot and MySQL 8. See the complete changelog at https://github.com/roundcube/roundcubemail/releases/tag/1.3.8
24 lines
629 B
Nix
24 lines
629 B
Nix
{ lib, stdenv, fetchzip }:
|
|
let
|
|
version = "1.3.8";
|
|
in
|
|
fetchzip rec {
|
|
name= "roundcube-${version}";
|
|
|
|
url = "https://github.com/roundcube/roundcubemail/releases/download/${version}/roundcubemail-${version}-complete.tar.gz";
|
|
sha256 = "1lhwr13bglm8rqgamnb480b07wpqhw9bskjj2xxb0x8kdjly29ks";
|
|
|
|
extraPostFetch = ''
|
|
ln -sf /etc/roundcube/config.inc.php $out/config/config.inc.php
|
|
rm -rf $out/installer
|
|
'';
|
|
|
|
meta = {
|
|
description = "Open Source Webmail Software";
|
|
maintainers = with stdenv.lib.maintainers; [ vskilet ];
|
|
license = stdenv.lib.licenses.gpl3;
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|
|
|