nixpkgs/pkgs/by-name/pu/pulumi-esc/package.nix

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

37 lines
869 B
Nix
Raw Permalink Normal View History

2024-05-30 20:05:26 -06:00
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "pulumi-esc";
2024-10-24 00:01:28 -06:00
version = "0.11.0";
2024-05-30 20:05:26 -06:00
src = fetchFromGitHub {
owner = "pulumi";
repo = "esc";
rev = "v${version}";
2024-10-24 00:01:28 -06:00
hash = "sha256-/H2HFjq/CpY5/xj9tqr+1Qo1nD06joahvbIiu16DLrs=";
2024-05-30 20:05:26 -06:00
};
subPackages = "cmd/esc";
2024-10-24 00:01:28 -06:00
vendorHash = "sha256-T9DUgfYpu1xXekMxzlr2VwmPSkD/sPml+G0KaFeeAWA=";
2024-05-30 20:05:26 -06:00
ldflags = [
"-s"
"-w"
"-X=github.com/pulumi/esc/cmd/esc/cli/version.Version=${src.rev}"
];
meta = with lib; {
description = "Pulumi ESC (Environments, Secrets, and Configuration) for cloud applications and infrastructure";
homepage = "https://github.com/pulumi/esc/tree/main";
changelog = "https://github.com/pulumi/esc/blob/${src.rev}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ yomaq ];
mainProgram = "esc";
};
}