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

This commit is contained in:
Shawn8901
2024-07-08 00:22:41 +02:00
parent f929333374
commit 24e472c6dc
+13 -6
View File
@@ -1,7 +1,8 @@
{ 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 ];
};