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