mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
c0738f3d87
Upstream blocks automated downloads based on User-Agent: https://github.com/NixOS/nixpkgs/issues/313548#issuecomment-2131323093 Closes #313548
112 lines
2.3 KiB
Nix
112 lines
2.3 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
requireFile,
|
|
unzip,
|
|
glib,
|
|
systemd,
|
|
nss,
|
|
nspr,
|
|
gtk3-x11,
|
|
pango,
|
|
atk,
|
|
cairo,
|
|
gdk-pixbuf,
|
|
xorg,
|
|
xorg_sys_opengl,
|
|
util-linux,
|
|
alsa-lib,
|
|
dbus,
|
|
at-spi2-atk,
|
|
cups,
|
|
vivaldi-ffmpeg-codecs,
|
|
libpulseaudio,
|
|
at-spi2-core,
|
|
libxkbcommon,
|
|
mesa,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "exodus";
|
|
version = "24.19.4";
|
|
|
|
src = requireFile {
|
|
name = "exodus-linux-x64-${finalAttrs.version}.zip";
|
|
url = "https://downloads.exodus.com/releases/exodus-linux-x64-${finalAttrs.version}.zip";
|
|
hash = "sha256-+g7DdDrSVmBl1wCSCoJcO2gmbWQBnJUYqjT+GuDlCYw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/share/applications
|
|
cp -r . $out
|
|
ln -s $out/Exodus $out/bin/Exodus
|
|
ln -s $out/bin/Exodus $out/bin/exodus
|
|
ln -s $out/exodus.desktop $out/share/applications
|
|
substituteInPlace $out/share/applications/exodus.desktop \
|
|
--replace 'Exec=bash -c "cd \`dirname %k\` && ./Exodus %u"' "Exec=Exodus %u"
|
|
'';
|
|
|
|
dontPatchELF = true;
|
|
dontBuild = true;
|
|
|
|
preFixup =
|
|
let
|
|
libPath = lib.makeLibraryPath [
|
|
glib
|
|
nss
|
|
nspr
|
|
gtk3-x11
|
|
pango
|
|
atk
|
|
cairo
|
|
gdk-pixbuf
|
|
xorg.libX11
|
|
xorg.libxcb
|
|
xorg.libXcomposite
|
|
xorg.libXcursor
|
|
xorg.libXdamage
|
|
xorg.libXext
|
|
xorg.libXfixes
|
|
xorg.libXi
|
|
xorg.libXrender
|
|
xorg.libxshmfence
|
|
xorg.libXtst
|
|
xorg_sys_opengl
|
|
util-linux
|
|
xorg.libXrandr
|
|
xorg.libXScrnSaver
|
|
alsa-lib
|
|
dbus.lib
|
|
at-spi2-atk
|
|
at-spi2-core
|
|
cups.lib
|
|
libpulseaudio
|
|
systemd
|
|
vivaldi-ffmpeg-codecs
|
|
libxkbcommon
|
|
mesa
|
|
];
|
|
in
|
|
''
|
|
patchelf \
|
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath "${libPath}" \
|
|
$out/Exodus
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.exodus.io/";
|
|
description = "Top-rated cryptocurrency wallet with Trezor integration and built-in Exchange";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [
|
|
mmahut
|
|
rople380
|
|
Crafter
|
|
];
|
|
};
|
|
})
|