vcluster: nixfmt format

This commit is contained in:
superherointj 2024-07-22 10:15:30 -03:00
parent b7060f9368
commit 8b1dd121b0

View File

@ -1,4 +1,13 @@
{ buildGoModule, fetchFromGitHub, go, installShellFiles, lib, nix-update-script, testers, vcluster }:
{
buildGoModule,
fetchFromGitHub,
go,
installShellFiles,
lib,
nix-update-script,
testers,
vcluster,
}:
buildGoModule rec {
pname = "vcluster";
@ -16,7 +25,8 @@ buildGoModule rec {
subPackages = [ "cmd/vclusterctl" ];
ldflags = [
"-s" "-w"
"-s"
"-w"
"-X main.version=${version}"
"-X main.goVersion=${lib.getVersion go}"
];
@ -54,6 +64,11 @@ buildGoModule rec {
homepage = "https://www.vcluster.com/";
license = lib.licenses.asl20;
mainProgram = "vcluster";
maintainers = with lib.maintainers; [ berryp peterromfeldhk qjoly superherointj ];
maintainers = with lib.maintainers; [
berryp
peterromfeldhk
qjoly
superherointj
];
};
}