lol
at 24.11-pre 25 lines 639 B view raw
1{ lib, nix-update-script, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "goda"; 5 version = "0.5.8"; 6 7 src = fetchFromGitHub { 8 owner = "loov"; 9 repo = "goda"; 10 rev = "v${version}"; 11 hash = "sha256-WmOe3MfFWUnFSuwntHUjN+NeeT7TdxfBOgciviYZC0Y="; 12 }; 13 14 vendorHash = "sha256-FYjlOYB0L4l6gF8hYtJroV1qMQD0ZmKWXBarjyConRs="; 15 16 passthru.updateScript = nix-update-script { }; 17 18 meta = with lib; { 19 homepage = "https://github.com/loov/goda"; 20 description = "Go Dependency Analysis toolkit"; 21 maintainers = with maintainers; [ michaeladler ]; 22 license = licenses.mit; 23 mainProgram = "goda"; 24 }; 25}