roundcube: init at 1.3.7

wip/yesman
Victor SENE 6 years ago
parent 4a9ca1d8bb
commit 1e7997bdd2
  1. 5
      maintainers/maintainer-list.nix
  2. 26
      pkgs/servers/roundcube/default.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -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";

@ -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;
};
}

@ -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 { };

Loading…
Cancel
Save