Commit 24e472c6 authored by Shawn8901's avatar Shawn8901
Browse files

proton-ge-bin: format with nixfmt-rfc-style

parent f9293333
Loading
Loading
Loading
Loading
+13 −6
Original line number Diff line number Diff line
{ lib
, stdenvNoCC
, fetchzip
, writeScript
{
  lib,
  stdenvNoCC,
  fetchzip,
  writeScript,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "proton-ge-bin";
@@ -12,7 +13,10 @@ stdenvNoCC.mkDerivation (finalAttrs: {
    hash = "sha256-sUjC6ByO8oeRhg3aZLSDJTc2GstdAdXJOddS37UkkL8=";
  };

  outputs = [ "out" "steamcompattool" ];
  outputs = [
    "out"
    "steamcompattool"
  ];

  buildCommand = ''
    runHook preBuild
@@ -50,7 +54,10 @@ stdenvNoCC.mkDerivation (finalAttrs: {
    '';
    homepage = "https://github.com/GloriousEggroll/proton-ge-custom";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ NotAShelf shawn8901 ];
    maintainers = with lib.maintainers; [
      NotAShelf
      shawn8901
    ];
    platforms = [ "x86_64-linux" ];
    sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
  };