nixpkgs/pkgs/servers/rainloop/default.nix

45 lines
1.4 KiB
Nix
Raw Normal View History

2018-06-28 19:54:44 +00:00
{ stdenv, fetchurl, unzip, dataPath ? "/etc/rainloop" }: let
common = { edition, sha256 }:
stdenv.mkDerivation (rec {
pname = "rainloop${stdenv.lib.optionalString (edition != "") "-${edition}"}";
2020-03-23 15:01:03 +00:00
version = "1.14.0";
2018-06-28 19:54:44 +00:00
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 = with licenses; if edition == "" then unfree else agpl3;
2018-06-28 19:54:44 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ das_j ];
};
});
in {
rainloop-community = common {
edition = "community";
2020-03-23 15:01:03 +00:00
sha256 = "0a8qafm4khwj8cnaiaxvjb9073w6fr63vk1b89nks4hmfv10jn6y";
2018-06-28 19:54:44 +00:00
};
rainloop-standard = common {
edition = "";
2020-03-23 15:01:03 +00:00
sha256 = "0961g4mci080f7y98zx9r4qw620l4z3na1ivvlyhhr1v4dywqvch";
2018-06-28 19:54:44 +00:00
};
}