cloudfox: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-17 08:44:45 +02:00
parent f21fc56f26
commit 89d91db8c4

View file

@ -1,6 +1,7 @@
{ lib {
, buildGoModule lib,
, fetchFromGitHub buildGoModule,
fetchFromGitHub,
}: }:
buildGoModule rec { buildGoModule rec {
@ -26,10 +27,10 @@ buildGoModule rec {
meta = with lib; { meta = with lib; {
description = "Tool for situational awareness of cloud penetration tests"; description = "Tool for situational awareness of cloud penetration tests";
mainProgram = "cloudfox";
homepage = "https://github.com/BishopFox/cloudfox"; homepage = "https://github.com/BishopFox/cloudfox";
changelog = "https://github.com/BishopFox/cloudfox/releases/tag/v${version}"; changelog = "https://github.com/BishopFox/cloudfox/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "cloudfox";
}; };
} }