3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/admin/wander/default.nix

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

23 lines
559 B
Nix
Raw Normal View History

2022-07-11 02:30:23 +01:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "wander";
2022-07-31 06:46:13 +01:00
version = "0.7.0";
2022-07-11 02:30:23 +01:00
src = fetchFromGitHub {
owner = "robinovitch61";
repo = pname;
rev = "v${version}";
2022-07-31 06:46:13 +01:00
sha256 = "sha256-aQqJDUDYHoUZ6ixnY3lmFOx29QpRRke5XHFIpsA+Bnw=";
2022-07-11 02:30:23 +01:00
};
2022-07-31 06:46:13 +01:00
vendorSha256 = "sha256-T+URnRLumXFz48go9TN0Wha99T03OWGfDK7cQ+zKeRI=";
2022-07-11 02:30:23 +01:00
meta = with lib; {
description = "Terminal app/TUI for HashiCorp Nomad";
license = licenses.mit;
homepage = "https://github.com/robinovitch61/wander";
maintainers = teams.c3d2.members;
};
}