diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-10-04 18:27:57 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-10-19 16:56:07 +0200 |
commit | dc017a0cab40cb2f33a01b420bb1b04038abb875 (patch) | |
tree | 239b6a9245b842a4daaceead93b71d8ddbeab498 /nix/kaniko.nix | |
parent | 1acf7e4c66aab0a0b5bcce8eb2965b35d587dd2a (diff) | |
download | garage-dc017a0cab40cb2f33a01b420bb1b04038abb875.tar.gz garage-dc017a0cab40cb2f33a01b420bb1b04038abb875.zip |
Build Garage with Nixfeature/static
Diffstat (limited to 'nix/kaniko.nix')
-rw-r--r-- | nix/kaniko.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/nix/kaniko.nix b/nix/kaniko.nix new file mode 100644 index 00000000..140328b8 --- /dev/null +++ b/nix/kaniko.nix @@ -0,0 +1,23 @@ +pkgs: +pkgs.buildGoModule rec { + pname = "kaniko"; + version = "1.6.0"; + + src = pkgs.fetchFromGitHub { + owner = "GoogleContainerTools"; + repo = "kaniko"; + rev = "v${version}"; + sha256 = "1fnclr556avxay6pvgw5ya3xbxfnf2gv4njq2hr4fd6fcjyslq5h"; + }; + + 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; + }; +} |