mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 18:44:07 +00:00
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, notation }:
|
|
|
|
buildGoModule rec {
|
|
pname = "notation";
|
|
version = "1.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "notaryproject";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-Pi4Ddlx8G4dRDz79yTiPBf6gf0wsvoE9CuyeVGrHst0=";
|
|
};
|
|
|
|
vendorHash = "sha256-REJPSBLXzIPAmxwzckufTqJvZCWUUkJLBmHTx2nv9QM=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
# This is a Go sub-module and cannot be built directly (e2e tests).
|
|
excludedPackages = [ "./test" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/notaryproject/notation/internal/version.Version=${version}"
|
|
"-X github.com/notaryproject/notation/internal/version.BuildMetadata="
|
|
];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd notation \
|
|
--bash <($out/bin/notation completion bash) \
|
|
--fish <($out/bin/notation completion fish) \
|
|
--zsh <($out/bin/notation completion zsh)
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = notation;
|
|
command = "notation version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "CLI tool to sign and verify OCI artifacts and container images";
|
|
homepage = "https://notaryproject.dev/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ aaronjheng ];
|
|
mainProgram = "notation";
|
|
};
|
|
}
|