nixpkgs/pkgs/servers/roundcube/default.nix

37 lines
1,012 B
Nix
Raw Permalink Normal View History

2021-01-15 07:07:56 +00:00
{ fetchurl, lib, stdenv, buildEnv, roundcube, roundcubePlugins }:
stdenv.mkDerivation rec {
pname = "roundcube";
version = "1.4.11";
2018-09-24 12:32:54 +00:00
src = fetchurl {
url = "https://github.com/roundcube/roundcubemail/releases/download/${version}/roundcubemail-${version}-complete.tar.gz";
sha256 = "sha256-rHMZBwwwX8LIjHcjYFVi2GBwMHMr7ukxzbQJHPBeabc=";
};
patches = [ ./0001-Don-t-resolve-symlinks-when-trying-to-find-INSTALL_P.patch ];
dontBuild = true;
installPhase = ''
mkdir $out
cp -r * $out/
2018-09-24 12:32:54 +00:00
ln -sf /etc/roundcube/config.inc.php $out/config/config.inc.php
rm -rf $out/installer
# shut up updater
rm $out/composer.json-dist
2018-09-24 12:32:54 +00:00
'';
passthru.withPlugins = f: buildEnv {
name = "${roundcube.name}-with-plugins";
paths = (f roundcubePlugins) ++ [ roundcube ];
};
2018-09-24 12:32:54 +00:00
meta = {
description = "Open Source Webmail Software";
2021-01-15 07:07:56 +00:00
maintainers = with lib.maintainers; [ vskilet globin ma27 ];
license = lib.licenses.gpl3;
platforms = lib.platforms.all;
2018-09-24 12:32:54 +00:00
};
}