waypoint: 0.4.1 -> 0.7.1

This commit is contained in:
techknowlogick 2022-01-14 14:13:10 -05:00
parent 632ca37b27
commit 369764ce1b

View file

@ -2,17 +2,16 @@
buildGoModule rec { buildGoModule rec {
pname = "waypoint"; pname = "waypoint";
version = "0.4.1"; version = "0.7.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "hashicorp"; owner = "hashicorp";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-JB/0nU/05Agh4fWFeSfrUHFtR8cQjxdXW0QHAoH0dDc="; sha256 = "1vcwzksixc9n016gf8zavkdk7ba33zkmymclvjwb32pwsanvzdz7";
}; };
deleteVendor = true; vendorSha256 = "1yl9lmqvw70a6z0c85vkzvdzyzqjizfa1rahfw8gb175fax1f0sz";
vendorSha256 = "sha256-2YrCRdpRk+gPHN8flahgWb2sbK5dYL5ivVqeJSsiy8Y=";
nativeBuildInputs = [ go-bindata installShellFiles ]; nativeBuildInputs = [ go-bindata installShellFiles ];
@ -77,7 +76,6 @@ buildGoModule rec {
through a consistent and repeatable workflow. through a consistent and repeatable workflow.
''; '';
license = licenses.mpl20; license = licenses.mpl20;
maintainers = with maintainers; [ winpat jk ]; maintainers = with maintainers; [ winpat jk techknowlogick ];
platforms = platforms.linux;
}; };
} }