diff --git a/pkgs/by-name/co/colima/package.nix b/pkgs/by-name/co/colima/package.nix index 45e4eb62a74f..c03ab54dd7df 100644 --- a/pkgs/by-name/co/colima/package.nix +++ b/pkgs/by-name/co/colima/package.nix @@ -5,6 +5,7 @@ buildGoModule, fetchFromGitHub, installShellFiles, + krunkit, lima-full, makeWrapper, procps, @@ -60,11 +61,14 @@ buildGoModule (finalAttrs: { postInstall = '' wrapProgram $out/bin/colima \ --prefix PATH : ${ - lib.makeBinPath [ - # Suppress warning on `colima start`: https://github.com/abiosoft/colima/issues/1333 - lima-full - qemu - ] + lib.makeBinPath ( + [ + # Suppress warning on `colima start`: https://github.com/abiosoft/colima/issues/1333 + lima-full + qemu + ] + ++ lib.optional (lib.meta.availableOn stdenv.hostPlatform krunkit) krunkit + ) } installShellCompletion --cmd colima \