Skip to content

Commit

Permalink
colima: init at 0.2.2
Browse files Browse the repository at this point in the history
`colima` is a very easy usable replacement for Docker Desktop on MacOS.

Signed-off-by: Andreas Schmid <[email protected]>
  • Loading branch information
aaschmid authored and zowoq committed Dec 12, 2021
1 parent 7f31224 commit c4dbe8f
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
41 changes: 41 additions & 0 deletions pkgs/applications/virtualization/colima/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
, lima
, makeWrapper
}:

buildGoModule rec {
pname = "colima";
version = "0.2.2";

src = fetchFromGitHub {
owner = "abiosoft";
repo = pname;
rev = "v${version}";
sha256 = "sha256-vWNkYsT2XF+oMOQ3pb1+/a207js8B+EmVanRQrYE/2A=";
};

nativeBuildInputs = [ installShellFiles makeWrapper ];

vendorSha256 = "sha256-F1ym88JrJWzsBg89Y1ufH4oefIRBwTGOw72BrjtpvBw=";

postInstall = ''
wrapProgram $out/bin/colima \
--prefix PATH : ${lib.makeBinPath [ lima ]}
installShellCompletion --cmd colima \
--bash <($out/bin/colima completion bash) \
--fish <($out/bin/colima completion fish) \
--zsh <($out/bin/colima completion zsh)
'';

meta = with lib; {
description = "Container runtimes on MacOS with minimal setup";
homepage = "https://github.com/abiosoft/colima";
license = licenses.mit;
platforms = platforms.darwin;
maintainers = with maintainers; [ aaschmid ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32479,6 +32479,8 @@ with pkgs;

idsk = callPackage ../tools/filesystems/idsk { };

colima = callPackage ../applications/virtualization/colima {};

lima = callPackage ../applications/virtualization/lima {};

logtop = callPackage ../tools/misc/logtop { };
Expand Down

0 comments on commit c4dbe8f

Please sign in to comment.