This repository has no description
0

Configure Feed

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

core / nix / pkgs / knotmirror.nix
242 B 18 lines
1{ 2 buildGoApplication, 3 modules, 4 src, 5}: 6buildGoApplication { 7 pname = "knotmirror"; 8 version = "0.1.0"; 9 inherit src modules; 10 11 doCheck = false; 12 13 subPackages = ["cmd/knotmirror"]; 14 15 meta = { 16 mainProgram = "knotmirror"; 17 }; 18}