exodus: use requireFile, move to by-name, format with nixfmt-rfc-style (#351824)

This commit is contained in:
Tomo
2024-10-28 09:35:13 -07:00
committed by GitHub
2 changed files with 32 additions and 30 deletions
@@ -1,38 +1,38 @@
{ stdenv
, lib
, fetchurl
, 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,
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 = fetchurl {
src = requireFile {
name = "exodus-linux-x64-${finalAttrs.version}.zip";
url = "https://downloads.exodus.com/releases/exodus-linux-x64-${finalAttrs.version}.zip";
curlOptsList = [ "--user-agent" "Mozilla/5.0" ];
hash = "sha256-+g7DdDrSVmBl1wCSCoJcO2gmbWQBnJUYqjT+GuDlCYw=";
};
@@ -102,6 +102,10 @@ stdenv.mkDerivation (finalAttrs: {
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = platforms.linux;
maintainers = with maintainers; [ mmahut rople380 Crafter ];
maintainers = with maintainers; [
mmahut
rople380
Crafter
];
};
})
-2
View File
@@ -33849,8 +33849,6 @@ with pkgs;
erigon = callPackage ../applications/blockchains/erigon { };
exodus = callPackage ../applications/blockchains/exodus { };
faraday = callPackage ../applications/blockchains/faraday { };
fulcrum = libsForQt5.callPackage ../applications/blockchains/fulcrum { };