merge lego with existing pkgs
All checks were successful
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 7s
Check Nix formatting / Perform Nix format checks (pull_request) Successful in 2m24s
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (pull_request) Successful in 7m5s

This commit is contained in:
ahuston-0 2025-03-03 08:22:50 -05:00
parent c7b5b3ce05
commit c988794366
3 changed files with 4 additions and 2 deletions

View File

@ -5,4 +5,5 @@ in
{
ftb-app = pkgs.callPackage ./ftb-app { inherit rad-maintainers; };
lego-latest = pkgs.callPackage ./lego-latest { inherit rad-maintainers; };
}

View File

@ -2,6 +2,7 @@
lib,
fetchFromGitHub,
buildGoModule,
rad-maintainers,
}:
buildGoModule rec {
@ -31,7 +32,7 @@ buildGoModule rec {
description = "Let's Encrypt client and ACME library written in Go";
license = licenses.mit;
homepage = "https://go-acme.github.io/lego/";
maintainers = teams.acme.members;
maintainers = teams.acme.members ++ [ rad-maintainers.ahuston-0 ];
mainProgram = "lego";
};

View File

@ -31,7 +31,7 @@
openssl
]
++ [
outputs.packages.x86_64-linux.lego-latest
outputs.packages.lego-latest
]
);