roundcube: 1.4.0 -> 1.4.1
https://github.com/roundcube/roundcubemail/releases/tag/1.4.1 Also fixed the test which got broken during #71407, most likely due to a merge issue.
This commit is contained in:
parent
2d67023bd8
commit
e292be76fc
|
@ -21,11 +21,10 @@ import ./make-test-python.nix ({ pkgs, ...} : {
|
||||||
};
|
};
|
||||||
|
|
||||||
testScript = ''
|
testScript = ''
|
||||||
$roundcube->start;
|
roundcube.start
|
||||||
$roundcube->waitForUnit("postgresql.service");
|
roundcube.wait_for_unit("postgresql.service")
|
||||||
$roundcube->waitForUnit("roundcube-setup.service");
|
roundcube.wait_for_unit("phpfpm-roundcube.service")
|
||||||
$roundcube->waitForUnit("phpfpm-roundcube.service");
|
roundcube.wait_for_unit("nginx.service")
|
||||||
$roundcube->waitForUnit("nginx.service");
|
roundcube.succeed("curl -sSfL http://roundcube/ | grep 'Keep me logged in'")
|
||||||
$roundcube->succeed("curl -sSfL http://roundcube/ | grep 'Keep me logged in'");
|
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "roundcube";
|
pname = "roundcube";
|
||||||
version = "1.4.0";
|
version = "1.4.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/roundcube/roundcubemail/releases/download/${version}/roundcubemail-${version}-complete.tar.gz";
|
url = "https://github.com/roundcube/roundcubemail/releases/download/${version}/roundcubemail-${version}-complete.tar.gz";
|
||||||
sha256 = "0b7gc342z0smn7q6cnznj9ncal0515ki4kkq1hlmqmyn0nna5lkb";
|
sha256 = "0jml16djrap0602agwm3hvq53c4lw5bg2qklxbfk79qs3v926134";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./0001-Don-t-resolve-symlinks-when-trying-to-find-INSTALL_P.patch ];
|
patches = [ ./0001-Don-t-resolve-symlinks-when-trying-to-find-INSTALL_P.patch ];
|
||||||
|
|
Loading…
Reference in New Issue