mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 03:25:02 +00:00
roundcube: init at 1.3.7
This commit is contained in:
parent
4a9ca1d8bb
commit
1e7997bdd2
|
@ -4421,6 +4421,11 @@
|
||||||
github = "vrthra";
|
github = "vrthra";
|
||||||
name = "Rahul Gopinath";
|
name = "Rahul Gopinath";
|
||||||
};
|
};
|
||||||
|
vskilet = {
|
||||||
|
email = "victor@sene.ovh";
|
||||||
|
github = "vskilet";
|
||||||
|
name = "Victor SENE";
|
||||||
|
};
|
||||||
vyp = {
|
vyp = {
|
||||||
email = "elisp.vim@gmail.com";
|
email = "elisp.vim@gmail.com";
|
||||||
github = "vyp";
|
github = "vyp";
|
||||||
|
|
26
pkgs/servers/roundcube/default.nix
Normal file
26
pkgs/servers/roundcube/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -1532,6 +1532,8 @@ with pkgs;
|
||||||
riot-web = callPackage ../applications/networking/instant-messengers/riot/riot-web.nix {
|
riot-web = callPackage ../applications/networking/instant-messengers/riot/riot-web.nix {
|
||||||
conf = config.riot-web.conf or null;
|
conf = config.riot-web.conf or null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
roundcube = callPackage ../servers/roundcube { };
|
||||||
|
|
||||||
rsbep = callPackage ../tools/backup/rsbep { };
|
rsbep = callPackage ../tools/backup/rsbep { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue