28 lines
667 B
Nix
28 lines
667 B
Nix
{ lib, nix-update-script, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "goda";
|
|
version = "0.5.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "loov";
|
|
repo = "goda";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-gXpO0DvxghyJIIxjE/KGjF/uRQ5W3p5QhqtmzeDmAfA=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-OyQEw6mRrRneo3T8wns0doU4lxJYEoilTd30xctLBJ4=";
|
|
|
|
passthru.updateScript = nix-update-script {
|
|
attrPath = pname;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/loov/goda";
|
|
description = "Go Dependency Analysis toolkit";
|
|
maintainers = with maintainers; [ michaeladler ];
|
|
license = licenses.mit;
|
|
mainProgram = "goda";
|
|
};
|
|
}
|