forked from tangled.org/core
this repo has no description
at master 308 B view raw
1{ 2 buildGoApplication, 3 modules, 4}: 5buildGoApplication { 6 pname = "genjwks"; 7 version = "0.1.0"; 8 src = ../../cmd/genjwks; 9 postPatch = '' 10 ln -s ${../../go.mod} ./go.mod 11 ''; 12 postInstall = '' 13 mv $out/bin/core $out/bin/genjwks 14 ''; 15 inherit modules; 16 doCheck = false; 17 CGO_ENABLED = 0; 18}