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
204 B 13 lines
1{ 2 src, 3 buildGoApplication, 4 modules, 5}: 6buildGoApplication { 7 pname = "genjwks"; 8 version = "0.1.0"; 9 inherit src modules; 10 subPackages = ["cmd/genjwks"]; 11 doCheck = false; 12 CGO_ENABLED = 0; 13}