Merge pull request #242496 from r-ryantm/auto-update/wander

wander: 0.9.0 -> 0.10.1
This commit is contained in:
Sandro 2023-07-10 02:02:22 +02:00 committed by GitHub
commit d705d71c03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +1,19 @@
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, wander }:
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
buildGoModule rec {
pname = "wander";
version = "0.9.0";
version = "0.10.1";
src = fetchFromGitHub {
owner = "robinovitch61";
repo = pname;
rev = "v${version}";
sha256 = "sha256-g9QAdwAqy3OA+nYsSpVLUPv1gn6N12339fgmYFT6Iys=";
sha256 = "sha256-jg83GHNlzPPzzhrLWw686vrmLlDL5L0+OUYqMoYUiJw=";
};
vendorHash = "sha256-iTaZ5/0UrLJ3JE3FwQpvjKKrhqklG4n1WFTJhWfj/rI=";
vendorHash = "sha256-SqDGXV8MpvEQFAkcE1NWvWjdzYsvbO5vA6k+hpY0js0=";
ldflags = [ "-s" "-w" "-X=github.com/robinovitch61/wander/cmd.Version=v${version}" ];
ldflags = [ "-s" "-w" ];
nativeBuildInputs = [ installShellFiles ];
@ -24,12 +24,6 @@ buildGoModule rec {
--zsh <($out/bin/wander completion zsh)
'';
passthru.tests.version = testers.testVersion {
package = wander;
command = "wander --version";
version = "v${version}";
};
meta = with lib; {
description = "Terminal app/TUI for HashiCorp Nomad";
license = licenses.mit;