This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / nix / pkgs / genjwks.nix
227 B 13 lines
1{ 2 buildGoModule, 3 goModHash, 4 gitignoreSource, 5}: 6buildGoModule { 7 pname = "genjwks"; 8 version = "0.1.0"; 9 src = gitignoreSource ../..; 10 subPackages = ["cmd/genjwks"]; 11 vendorHash = goModHash; 12 env.CGO_ENABLED = 0; 13}