mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Merge pull request #47270 from Vskilet/roundcube-package
roundcube: init at 1.3.7
This commit is contained in:
commit
2255fce780
@ -4436,6 +4436,11 @@
|
||||
github = "vrthra";
|
||||
name = "Rahul Gopinath";
|
||||
};
|
||||
vskilet = {
|
||||
email = "victor@sene.ovh";
|
||||
github = "vskilet";
|
||||
name = "Victor SENE";
|
||||
};
|
||||
vyp = {
|
||||
email = "elisp.vim@gmail.com";
|
||||
github = "vyp";
|
||||
|
23
pkgs/servers/roundcube/default.nix
Normal file
23
pkgs/servers/roundcube/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, stdenv, fetchzip }:
|
||||
let
|
||||
version = "1.3.7";
|
||||
in
|
||||
fetchzip rec {
|
||||
name= "roundcube-${version}";
|
||||
|
||||
url = "https://github.com/roundcube/roundcubemail/releases/download/${version}/roundcubemail-${version}-complete.tar.gz";
|
||||
sha256 = "0xwqy0adynx7066a0cvz9vyg85waax1i4p70kcdkz7q5jnw4jzhf";
|
||||
|
||||
extraPostFetch = ''
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
@ -1538,6 +1538,8 @@ with pkgs;
|
||||
conf = config.riot-web.conf or null;
|
||||
};
|
||||
|
||||
roundcube = callPackage ../servers/roundcube { };
|
||||
|
||||
rsbep = callPackage ../tools/backup/rsbep { };
|
||||
|
||||
rsyslog = callPackage ../tools/system/rsyslog {
|
||||
|
Loading…
Reference in New Issue
Block a user