aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/blockchains/exodus/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/blockchains/exodus/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/blockchains/exodus/default.nix80
1 files changed, 80 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/blockchains/exodus/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/blockchains/exodus/default.nix
new file mode 100644
index 000000000000..3992c7824851
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/blockchains/exodus/default.nix
@@ -0,0 +1,80 @@
+{ stdenv, lib, fetchurl, unzip, glib, systemd, nss, nspr, gtk3-x11, pango,
+atk, cairo, gdk-pixbuf, xorg, xorg_sys_opengl, util-linux, alsaLib, dbus, at-spi2-atk,
+cups, vivaldi-ffmpeg-codecs, libpulseaudio, at-spi2-core }:
+
+stdenv.mkDerivation rec {
+ pname = "exodus";
+ version = "20.12.4";
+
+ src = fetchurl {
+ url = "https://downloads.exodus.io/releases/${pname}-linux-x64-${version}.zip";
+ sha256 = "1j1iqmcbwfj72l7g83ah701bipas9cqwazyhh0af5hp2ckj9nmmf";
+ };
+
+ sourceRoot = ".";
+ unpackCmd = ''
+ ${unzip}/bin/unzip "$src" -x "Exodus*/lib*so"
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin $out/share/applications
+ cd Exodus-linux-x64
+ 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"' "Exec=Exodus"
+ '';
+
+ 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.libXtst
+ xorg_sys_opengl
+ util-linux
+ xorg.libXrandr
+ xorg.libXScrnSaver
+ alsaLib
+ dbus.lib
+ at-spi2-atk
+ at-spi2-core
+ cups.lib
+ libpulseaudio
+ systemd
+ vivaldi-ffmpeg-codecs
+ ];
+ in ''
+ patchelf \
+ --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
+ --set-rpath "${libPath}" \
+ $out/Exodus
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = "https://www.exodus.io/";
+ description = "Top-rated cryptocurrency wallet with Trezor integration and built-in Exchange";
+ license = licenses.unfree;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ mmahut rople380 ];
+ };
+}