2021-01-11 15:15:12 +01:00
|
|
|
{ stdenv, callPackage, fetchurl, lib }:
|
2016-10-03 15:24:35 +02:00
|
|
|
|
2016-10-12 08:54:47 +02:00
|
|
|
let
|
2021-09-29 17:27:03 +02:00
|
|
|
mkRambox = opts: callPackage (import ./rambox.nix opts) {};
|
|
|
|
in
|
|
|
|
mkRambox rec {
|
2020-02-21 16:25:21 +01:00
|
|
|
pname = "rambox";
|
2021-09-29 17:27:03 +02:00
|
|
|
version = "0.7.9";
|
2021-01-11 15:15:12 +01:00
|
|
|
|
2020-02-21 16:25:21 +01:00
|
|
|
src = {
|
|
|
|
x86_64-linux = fetchurl {
|
2021-01-11 15:15:12 +01:00
|
|
|
url = "https://github.com/ramboxapp/community-edition/releases/download/${version}/Rambox-${version}-linux-x86_64.AppImage";
|
2021-09-29 17:27:03 +02:00
|
|
|
sha256 = "19y4cmrfp79dr4hgl698imp4f3l1nhgvhh76j5laxg46ld71knil";
|
2017-11-16 08:22:41 +01:00
|
|
|
};
|
2020-02-21 16:25:21 +01:00
|
|
|
i686-linux = fetchurl {
|
2021-01-11 15:15:12 +01:00
|
|
|
url = "https://github.com/ramboxapp/community-edition/releases/download/${version}/Rambox-${version}-linux-i386.AppImage";
|
2021-09-29 17:27:03 +02:00
|
|
|
sha256 = "13wiciyshyrabq2mvnssl2d6svia1kdvwx3dl26249iyif96xxvq";
|
2020-02-21 16:25:21 +01:00
|
|
|
};
|
|
|
|
}.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
|
2017-09-07 20:10:50 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-02-21 16:25:21 +01:00
|
|
|
description = "Free and Open Source messaging and emailing app that combines common web applications into one";
|
2020-04-24 17:03:32 +02:00
|
|
|
homepage = "https://rambox.pro";
|
2020-02-21 16:25:21 +01:00
|
|
|
license = licenses.mit;
|
2021-09-29 17:27:03 +02:00
|
|
|
maintainers = with maintainers; [];
|
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2020-02-21 16:25:21 +01:00
|
|
|
hydraPlatforms = [];
|
2020-01-15 19:16:59 +01:00
|
|
|
};
|
2016-10-03 15:24:35 +02:00
|
|
|
}
|