nixpkgs/pkgs/by-name/da/dapr-cli/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.1 KiB
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, installShellFiles, lib }:
2020-08-06 00:43:45 +00:00
2021-04-02 13:44:54 +00:00
buildGoModule rec {
pname = "dapr-cli";
2024-03-06 11:59:28 +00:00
version = "1.13.0";
2020-08-06 00:43:45 +00:00
src = fetchFromGitHub {
owner = "dapr";
repo = "cli";
rev = "v${version}";
2024-03-06 11:59:28 +00:00
sha256 = "sha256-nR9+6glX0oUJZq32XxyV4aVjfjVlNycZvMNaVHy+Q1s=";
2020-08-06 00:43:45 +00:00
};
2024-04-05 21:03:12 +00:00
vendorHash = "sha256-kFmoNd40YxUXVXk0F1Bf77KS5AM0jjOTwTjM5pYKkv4=";
proxyVendor = true;
nativeBuildInputs = [ installShellFiles ];
subPackages = [ "." ];
preCheck = ''
export HOME=$(mktemp -d)
'';
2020-08-16 00:23:57 +00:00
ldflags = [
"-X main.version=${version}"
"-X main.apiVersion=1.0"
"-X github.com/dapr/cli/pkg/standalone.gitcommit=${src.rev}"
"-X github.com/dapr/cli/pkg/standalone.gitversion=${version}"
];
2020-08-06 00:43:45 +00:00
postInstall = ''
mv $out/bin/cli $out/bin/dapr
installShellCompletion --cmd dapr \
--bash <($out/bin/dapr completion bash) \
--zsh <($out/bin/dapr completion zsh)
2020-08-06 00:43:45 +00:00
'';
meta = with lib; {
2020-08-06 00:43:45 +00:00
description = "A CLI for managing Dapr, the distributed application runtime";
homepage = "https://dapr.io";
license = licenses.asl20;
maintainers = with maintainers; [ joshvanl lucperkins ];
mainProgram = "dapr";
2020-08-06 00:43:45 +00:00
};
}