Skip to content

Commit

Permalink
Merge pull request #73169 from Ma27/bump-roundcube
Browse files Browse the repository at this point in the history
roundcube: 1.3.10 -> 1.4.0
  • Loading branch information
globin committed Nov 15, 2019
2 parents 75667c2 + d75c296 commit ab99684
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nixos/tests/roundcube.nix
Expand Up @@ -25,6 +25,6 @@ import ./make-test-python.nix ({ pkgs, ...} : {
roundcube.wait_for_unit("postgresql.service")
roundcube.wait_for_unit("phpfpm-roundcube.service")
roundcube.wait_for_unit("nginx.service")
roundcube.succeed("curl -sSfL http://roundcube/ | grep 'Keep me logged in'")
roundcube.succeed("curl -sSL http://roundcube/ | grep 'Keep me logged in'")
'';
})
Expand Up @@ -18,7 +18,7 @@ index 08e3bb5..b2ad498 100755
*/

-define('INSTALL_PATH', realpath(__DIR__ . '/..') . '/' );
+define('INSTALL_PATH', __DIR__ . '/../' );
+define('INSTALL_PATH', dirname(dirname($argv[0])).'/');

require_once INSTALL_PATH . 'program/include/clisetup.php';

Expand Down
4 changes: 2 additions & 2 deletions pkgs/servers/roundcube/default.nix
Expand Up @@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "roundcube";
version = "1.3.10";
version = "1.4.0";

src = fetchurl {
url = "https://github.com/roundcube/roundcubemail/releases/download/${version}/roundcubemail-${version}-complete.tar.gz";
sha256 = "1gx8dgrr3p6fksv3pm381a080i9r6snwcmfd1q112mqg19ai3zk9";
sha256 = "0b7gc342z0smn7q6cnznj9ncal0515ki4kkq1hlmqmyn0nna5lkb";
};

patches = [ ./0001-Don-t-resolve-symlinks-when-trying-to-find-INSTALL_P.patch ];
Expand Down

0 comments on commit ab99684

Please sign in to comment.