mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #118050 from 06kellyjac/kube3d
kube3d: 4.3.0 -> 4.4.0
This commit is contained in:
commit
5aa2443055
1 changed files with 10 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
buildGoModule rec {
|
||||
pname = "kube3d";
|
||||
version = "4.3.0";
|
||||
version = "4.4.0";
|
||||
|
||||
excludedPackages = "tools";
|
||||
|
||||
|
@ -10,7 +10,7 @@ buildGoModule rec {
|
|||
owner = "rancher";
|
||||
repo = "k3d";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-ybEYKr0rQY8Qg74V1mXqShq5Z2d/Adf0bSSbEMIyo3I=";
|
||||
sha256 = "sha256-+9VtFHZ4ZZiX04u5YvPoQaelH9Q9oKMrbFHFFiNUxBA=";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
|
@ -31,6 +31,14 @@ buildGoModule rec {
|
|||
--zsh <($out/bin/k3d completion zsh)
|
||||
'';
|
||||
|
||||
doInstallCheck = true;
|
||||
installCheckPhase = ''
|
||||
runHook preInstallCheck
|
||||
$out/bin/k3d --help
|
||||
$out/bin/k3d version | grep "k3d version v${version}"
|
||||
runHook postInstallCheck
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/rancher/k3d";
|
||||
changelog = "https://github.com/rancher/k3d/blob/v${version}/CHANGELOG.md";
|
||||
|
|
Loading…
Reference in a new issue