571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
65 lines
1.5 KiB
Nix
65 lines
1.5 KiB
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, lib
|
|
, stdenv
|
|
, testers
|
|
, kubevela
|
|
, nix-update-script
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubevela";
|
|
version = "1.9.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kubevela";
|
|
repo = "kubevela";
|
|
rev = "v${version}";
|
|
hash = "sha256-b9N7vEY6AjJmOWySyssW7nrlZ+iFhOzVFmVQGfk/ilw=";
|
|
};
|
|
|
|
vendorHash = "sha256-WE5jE58pCXUvIKo+NAQUNrNzxLkUDIuJp2yBqE+8Ors=";
|
|
|
|
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.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
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 = "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";
|
|
};
|
|
}
|