roundcube: init at 1.3.7

This commit is contained in:
Victor SENE 2018-09-24 14:32:54 +02:00
parent 4a9ca1d8bb
commit 1e7997bdd2
3 changed files with 33 additions and 0 deletions

View file

@ -4421,6 +4421,11 @@
github = "vrthra";
name = "Rahul Gopinath";
};
vskilet = {
email = "victor@sene.ovh";
github = "vskilet";
name = "Victor SENE";
};
vyp = {
email = "elisp.vim@gmail.com";
github = "vyp";

View file

@ -0,0 +1,26 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
name= "roundcube-${version}";
version = "1.3.7";
src = fetchurl {
url = "https://github.com/roundcube/roundcubemail/releases/download/${version}/roundcubemail-${version}-complete.tar.gz";
sha256 = "31bd37d0f89dc634064f170c6ed8981c258754b6f81eccb59a2634b29d0bb01c";
};
installPhase = ''
mkdir -p $out/
cp -R . $out/
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;
};
}

View file

@ -1532,6 +1532,8 @@ with pkgs;
riot-web = callPackage ../applications/networking/instant-messengers/riot/riot-web.nix {
conf = config.riot-web.conf or null;
};
roundcube = callPackage ../servers/roundcube { };
rsbep = callPackage ../tools/backup/rsbep { };