2021-10-04 16:27:57 +00:00
|
|
|
pkgs:
|
|
|
|
pkgs.buildGoModule rec {
|
|
|
|
pname = "kaniko";
|
|
|
|
version = "1.6.0";
|
|
|
|
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "GoogleContainerTools";
|
|
|
|
repo = "kaniko";
|
|
|
|
rev = "v${version}";
|
2023-01-09 11:43:10 +00:00
|
|
|
sha256 = "TXgzO/NfLXVo5a7yyO3XYSk+9H1CwMF+vwbRx3kchQ8=";
|
2021-10-04 16:27:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
vendorSha256 = null;
|
|
|
|
|
|
|
|
checkPhase = "true";
|
|
|
|
|
|
|
|
meta = with pkgs.lib; {
|
|
|
|
description = "kaniko is a tool to build container images from a Dockerfile, inside a container or Kubernetes cluster.";
|
|
|
|
homepage = "https://github.com/GoogleContainerTools/kaniko";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|