nixpkgs/pkgs/applications/networking/instant-messengers/rambox/default.nix

29 lines
1 KiB
Nix
Raw Normal View History

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