kbst: remove PostInstallCheckPhase

Should've been postInstallCheckPhase, but in fact, the check would fail anyway.
Otherwise, replacing with versionCheckHook would've been nice.
This commit is contained in:
Stefan Frijters
2026-02-09 03:22:55 +01:00
parent b9688e4fc1
commit 1ee03aed1a
+1 -6
View File
@@ -11,7 +11,7 @@ buildGoModule (finalAttrs: {
src = fetchFromGitHub {
owner = "kbst";
repo = "kbst";
rev = "v${finalAttrs.version}";
tag = "v${finalAttrs.version}";
hash = "sha256-tbSYNJp/gzEz+wEAe3bvIiZL5axZvW+bxqTOBkYSpMY=";
};
@@ -33,11 +33,6 @@ buildGoModule (finalAttrs: {
doCheck = false;
doPostInstallCheck = true;
PostInstallCheckPhase = ''
$out/bin/kbst help | grep v${finalAttrs.version} > /dev/null
'';
meta = {
description = "Kubestack framework CLI";
mainProgram = "kbst";