From e44b996295f76e6b61e15d12c7bf9b42602df8ad Mon Sep 17 00:00:00 2001 From: r-vdp Date: Wed, 21 Aug 2024 10:36:50 +0200 Subject: [PATCH] mycelium: reformat with nixfmt --- pkgs/by-name/my/mycelium/package.nix | 29 +++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/pkgs/by-name/my/mycelium/package.nix b/pkgs/by-name/my/mycelium/package.nix index dd5202cdbfc5..266448a438eb 100644 --- a/pkgs/by-name/my/mycelium/package.nix +++ b/pkgs/by-name/my/mycelium/package.nix @@ -1,12 +1,13 @@ -{ lib -, rustPlatform -, fetchFromGitHub -, stdenv -, openssl -, darwin -, nixosTests -, nix-update-script -, versionCheckHook +{ + lib, + rustPlatform, + fetchFromGitHub, + stdenv, + openssl, + darwin, + nixosTests, + nix-update-script, + versionCheckHook, }: rustPlatform.buildRustPackage rec { @@ -45,7 +46,9 @@ rustPlatform.buildRustPackage rec { passthru = { updateScript = nix-update-script { }; - tests = { inherit (nixosTests) mycelium; }; + tests = { + inherit (nixosTests) mycelium; + }; }; meta = with lib; { @@ -53,7 +56,11 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/threefoldtech/mycelium"; changelog = "https://github.com/threefoldtech/mycelium/blob/${src.rev}/CHANGELOG.md"; license = licenses.asl20; - maintainers = with maintainers; [ flokli matthewcroughan rvdp ]; + maintainers = with maintainers; [ + flokli + matthewcroughan + rvdp + ]; mainProgram = "mycelium"; }; }