mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 09:31:01 +00:00
db72f5cad3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rambox-pro/versions
45 lines
1.5 KiB
Nix
45 lines
1.5 KiB
Nix
{ autoPatchelfHook, electron, fetchurl, makeDesktopItem, makeWrapper, nodePackages, nss, stdenv, xdg_utils, xorg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rambox-pro";
|
|
version = "1.1.6";
|
|
|
|
dontBuild = true;
|
|
dontStrip = true;
|
|
|
|
buildInputs = [ nss xorg.libXext xorg.libxkbfile xorg.libXScrnSaver ];
|
|
nativeBuildInputs = [ autoPatchelfHook makeWrapper nodePackages.asar ];
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ramboxapp/download/releases/download/v${version}/RamboxPro-${version}-linux-x64.tar.gz";
|
|
sha256 = "1jdamjdl649315ms5g1c7m7gpy04rv7xpy6bsvink242adaq2pjz";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/opt/RamboxPro $out/share/applications
|
|
asar e resources/app.asar $out/opt/RamboxPro/resources/app.asar.unpacked
|
|
ln -s ${desktopItem}/share/applications/* $out/share/applications
|
|
'';
|
|
|
|
postFixup = ''
|
|
makeWrapper ${electron}/bin/electron $out/bin/ramboxpro \
|
|
--add-flags "$out/opt/RamboxPro/resources/app.asar.unpacked --without-update" \
|
|
--prefix PATH : ${xdg_utils}/bin
|
|
'';
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "rambox-pro";
|
|
exec = "ramboxpro";
|
|
type = "Application";
|
|
desktopName = "Rambox Pro";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Messaging and emailing app that combines common web applications into one";
|
|
homepage = https://rambox.pro;
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ chrisaw ];
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
};
|
|
}
|