Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions pkgs/applications/networking/cluster/kubevela/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{ buildGoModule
, fetchFromGitHub
, installShellFiles
, lib
, stdenv
, testers
, kubevela
, nix-update-script
}:

buildGoModule rec {
pname = "kubevela";
version = "1.9.8";

src = fetchFromGitHub {
owner = "kubevela";
repo = "kubevela";
rev = "v${version}";
hash = "sha256-Bf9OS8IlsahE40JsYTALC3oW6HliyqycA2CTJFRRTag=";
};

vendorHash = "sha256-obvlie4P3mhp2VMyUYHNZIlgfICM4PDhu4YKeDsVMxw=";

ldflags = [
"-s" "-w"
"-X github.com/oam-dev/kubevela/version.VelaVersion=${version}"
];

subPackages = [ "references/cmd/cli" ];

CGO_ENABLED = 0;

# Workaround for permission issue in shell completion
HOME = "$TMPDIR";

installPhase = ''
runHook preInstall
install -Dm755 "$GOPATH/bin/cli" -T $out/bin/vela
runHook postInstall
'';

nativeBuildInputs = [ installShellFiles ];
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
installShellCompletion --cmd vela \
--bash <($out/bin/vela completion bash) \
--zsh <($out/bin/vela completion zsh)
'';

passthru.tests.version = testers.testVersion {
package = kubevela;
command = "HOME=$TMPDIR vela version";
};

passthru.updateScript = nix-update-script { };

meta = {
description = "An application delivery platform to deploy and operate applications in hybrid, multi-cloud environments";
downloadPage = "https://github.com/kubevela/kubevela";
homepage = "https://kubevela.io/";
license = lib.licenses.asl20;
maintainers = [ ];
mainProgram = "vela";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33141,6 +33141,8 @@ with pkgs;

kubeval-schema = callPackage ../applications/networking/cluster/kubeval/schema.nix { };

kubevela = callPackage ../applications/networking/cluster/kubevela { };

kubernetes = callPackage ../applications/networking/cluster/kubernetes { };
kubectl = callPackage ../applications/networking/cluster/kubernetes/kubectl.nix { };
kubectl-convert = kubectl.convert;
Expand Down