rainloop: Init at 1.12.1
This commit is contained in:
parent
25f4a12bc4
commit
f3a095dbd2
44
pkgs/servers/rainloop/default.nix
Normal file
44
pkgs/servers/rainloop/default.nix
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{ stdenv, fetchurl, unzip, dataPath ? "/etc/rainloop" }: let
|
||||||
|
common = { edition, sha256 }:
|
||||||
|
stdenv.mkDerivation (rec {
|
||||||
|
name = "rainloop-${edition}-${version}";
|
||||||
|
version = "1.12.1";
|
||||||
|
|
||||||
|
buildInputs = [ unzip ];
|
||||||
|
|
||||||
|
unpackPhase = ''
|
||||||
|
mkdir rainloop
|
||||||
|
unzip -q -d rainloop $src
|
||||||
|
'';
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/RainLoop/rainloop-webmail/releases/download/v${version}/rainloop-${edition}${stdenv.lib.optionalString (edition != "") "-"}${version}.zip";
|
||||||
|
sha256 = sha256;
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir $out
|
||||||
|
cp -r rainloop/* $out
|
||||||
|
rm -rf $out/data
|
||||||
|
ln -s ${dataPath} $out/data
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Simple, modern & fast web-based email client";
|
||||||
|
homepage = "https://www.rainloop.net";
|
||||||
|
downloadPage = https://github.com/RainLoop/rainloop-webmail/releases;
|
||||||
|
license = licenses.agpl3;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ das_j ];
|
||||||
|
};
|
||||||
|
});
|
||||||
|
in {
|
||||||
|
rainloop-community = common {
|
||||||
|
edition = "community";
|
||||||
|
sha256 = "06w1vxqpcj2j8dzzjqh6azala8l46hzy85wcvqbjdlj5w789jzsx";
|
||||||
|
};
|
||||||
|
rainloop-standard = common {
|
||||||
|
edition = "";
|
||||||
|
sha256 = "1fbnpk7l2fbmzn31vx36caqg9xm40g4hh4mv3s8d70slxwhlscw0";
|
||||||
|
};
|
||||||
|
}
|
@ -1480,6 +1480,10 @@ with pkgs;
|
|||||||
|
|
||||||
syslogng_incubator = callPackage ../tools/system/syslog-ng-incubator { };
|
syslogng_incubator = callPackage ../tools/system/syslog-ng-incubator { };
|
||||||
|
|
||||||
|
inherit (callPackages ../servers/rainloop { })
|
||||||
|
rainloop-community
|
||||||
|
rainloop-standard;
|
||||||
|
|
||||||
ring-daemon = callPackage ../applications/networking/instant-messengers/ring-daemon { };
|
ring-daemon = callPackage ../applications/networking/instant-messengers/ring-daemon { };
|
||||||
|
|
||||||
riot-web = callPackage ../applications/networking/instant-messengers/riot/riot-web.nix {
|
riot-web = callPackage ../applications/networking/instant-messengers/riot/riot-web.nix {
|
||||||
|
Loading…
Reference in New Issue
Block a user