nixpkgs/pkgs/development/tools/goda/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
641 B
Nix
Raw Normal View History

2022-07-05 10:48:03 +00:00
{ lib, nix-update-script, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "goda";
2023-04-24 16:13:38 +00:00
version = "0.5.7";
2022-07-05 10:48:03 +00:00
src = fetchFromGitHub {
owner = "loov";
repo = "goda";
rev = "v${version}";
2023-04-24 16:13:38 +00:00
sha256 = "sha256-kilFb/2wXdzn/gXy9mBg0PZH8rd+MFIom4AGAZLgnBo=";
2022-07-05 10:48:03 +00:00
};
vendorHash = "sha256-FYjlOYB0L4l6gF8hYtJroV1qMQD0ZmKWXBarjyConRs=";
2022-07-05 10:48:03 +00:00
passthru.updateScript = nix-update-script { };
2022-07-05 10:48:03 +00:00
meta = with lib; {
homepage = "https://github.com/loov/goda";
description = "Go Dependency Analysis toolkit";
maintainers = with maintainers; [ michaeladler ];
license = licenses.mit;
mainProgram = "goda";
};
}