From bbf24b73054f45c193a48039ba68952847b30789 Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Mon, 2 May 2022 07:33:13 +0000 Subject: [PATCH] okteto: init at 2.3.1 --- pkgs/development/tools/okteto/default.nix | 49 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 51 insertions(+) create mode 100644 pkgs/development/tools/okteto/default.nix diff --git a/pkgs/development/tools/okteto/default.nix b/pkgs/development/tools/okteto/default.nix new file mode 100644 index 00000000000..d1fb6615850 --- /dev/null +++ b/pkgs/development/tools/okteto/default.nix @@ -0,0 +1,49 @@ +{ lib, buildGoModule, fetchFromGitHub, installShellFiles }: + +buildGoModule rec { + pname = "okteto"; + version = "2.3.1"; + + src = fetchFromGitHub { + owner = "okteto"; + repo = "okteto"; + rev = version; + sha256 = "sha256-2L6Ky7Mbky6VYx4kdBuYTtaJ9AzNufuYLrgERxLYpg8="; + }; + + postPatch = '' + # Disable some tests that need file system & network access. + find cmd -name "*_test.go" | xargs rm -f + rm -f pkg/analytics/track_test.go + ''; + + vendorSha256 = "sha256-XT/ZLydN1oeuRupD3gjvY6+hOB/Lq5CQwhfr9/iT7JI="; + + nativeBuildInputs = [ installShellFiles ]; + + ldflags = [ + "-s" + "-w" + "-X github.com/okteto/okteto/pkg/config.VersionString=${version}" + ]; + + tags = [ "osusergo" "netgo" "static_build" ]; + + preCheck = '' + export HOME=$(mktemp -d) + ''; + + postInstall = '' + installShellCompletion --cmd okteto \ + --bash <($out/bin/okteto completion bash) \ + --fish <($out/bin/okteto completion fish) \ + --zsh <($out/bin/okteto completion zsh) + ''; + + meta = with lib; { + description = "Develop your applications directly in your Kubernetes Cluster"; + homepage = "https://okteto.com/"; + license = licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7e92d351193..c22ff632112 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -28395,6 +28395,8 @@ with pkgs; odin2 = callPackage ../applications/audio/odin2 { }; + okteto = callPackage ../development/tools/okteto { }; + onlyoffice-bin = callPackage ../applications/office/onlyoffice-bin { }; open-policy-agent = callPackage ../development/tools/open-policy-agent { };