Commit 46947f5d authored by Tomo's avatar Tomo
Browse files

exodus: format with nixfmt-rfc-style

parent 474d515b
Loading
Loading
Loading
Loading
+35 −27
Original line number Diff line number Diff line
{ 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,
  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.mkDerivation (finalAttrs: {
@@ -32,7 +33,10 @@ stdenv.mkDerivation (finalAttrs: {
  src = fetchurl {
    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" ];
    curlOptsList = [
      "--user-agent"
      "Mozilla/5.0"
    ];
    hash = "sha256-+g7DdDrSVmBl1wCSCoJcO2gmbWQBnJUYqjT+GuDlCYw=";
  };

@@ -102,6 +106,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
    ];
  };
})