2021-10-04 16:27:57 +00:00
|
|
|
pkgs:
|
|
|
|
pkgs.buildGoModule rec {
|
|
|
|
pname = "kaniko";
|
2023-04-25 12:46:47 +00:00
|
|
|
version = "1.9.2";
|
2021-10-04 16:27:57 +00:00
|
|
|
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "GoogleContainerTools";
|
|
|
|
repo = "kaniko";
|
|
|
|
rev = "v${version}";
|
2023-04-25 12:46:47 +00:00
|
|
|
sha256 = "dXQ0/o1qISv+sjNVIpfF85bkbM9sGOGwqVbWZpMWfMY=";
|
2021-10-04 16:27:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
vendorSha256 = null;
|
|
|
|
|
|
|
|
checkPhase = "true";
|
|
|
|
|
|
|
|
meta = with pkgs.lib; {
|
2023-01-26 11:20:12 +00:00
|
|
|
description =
|
|
|
|
"kaniko is a tool to build container images from a Dockerfile, inside a container or Kubernetes cluster.";
|
2021-10-04 16:27:57 +00:00
|
|
|
homepage = "https://github.com/GoogleContainerTools/kaniko";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|