4d6411288c
+ require explicit version of electron in packages
57 lines
1.9 KiB
Nix
57 lines
1.9 KiB
Nix
{ autoPatchelfHook, electron_4, fetchurl, makeDesktopItem, makeWrapper, nodePackages, nss, stdenv, xdg_utils, xorg }:
|
|
|
|
let
|
|
electron = electron_4;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "rambox-pro";
|
|
version = "1.3.2";
|
|
|
|
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 = "010v5i8lxfz77cb5cn9va5cbnfa28nzdymk5k2fcpi65jldw1pxx";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{bin,resources/dist/renderer/assets/images/app,share/applications,share/icons/hicolor/256x256/apps}
|
|
|
|
asar e resources/app.asar $out/resources
|
|
|
|
substituteInPlace "$out/resources/dist/electron/main.js" \
|
|
--replace ",isHidden:" ",path:\"$out/bin/ramboxpro\",isHidden:"
|
|
|
|
cp $desktopItem/share/applications/* $out/share/applications
|
|
cp $out/resources/dist/electron/imgs/256x256.png $out/share/icons/hicolor/256x256/apps/ramboxpro.png
|
|
cp $out/resources/dist/electron/imgs/256x256.png $out/resources/dist/renderer/assets/images/app/icon.png
|
|
'';
|
|
|
|
postFixup = ''
|
|
makeWrapper ${electron}/bin/electron $out/bin/ramboxpro \
|
|
--add-flags "$out/resources --without-update" \
|
|
--prefix PATH : ${xdg_utils}/bin
|
|
'';
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "rambox-pro";
|
|
exec = "ramboxpro";
|
|
icon = "ramboxpro";
|
|
type = "Application";
|
|
desktopName = "Rambox Pro";
|
|
categories = "Network;";
|
|
};
|
|
|
|
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" ];
|
|
};
|
|
}
|