nixpkgs/pkgs/servers/roundcube/default.nix

35 lines
976 B
Nix
Raw Normal View History

{ fetchurl, stdenv, buildEnv, roundcube, roundcubePlugins }:
stdenv.mkDerivation rec {
pname = "roundcube";
2020-12-27 22:01:48 +00:00
version = "1.4.10";
2018-09-24 12:32:54 +00:00
src = fetchurl {
url = "https://github.com/roundcube/roundcubemail/releases/download/${version}/roundcubemail-${version}-complete.tar.gz";
2020-12-27 22:01:48 +00:00
sha256 = "03sjvmnrspkiq0w73xvp1w61pcxhv0djrdm3mvs8h0dp9pfc1n53";
};
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
'';
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";
maintainers = with stdenv.lib.maintainers; [ vskilet globin ma27 ];
2018-09-24 12:32:54 +00:00
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.all;
};
}