mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
notation: init at 1.0.0-rc.7
This commit is contained in:
parent
f742512ccc
commit
d954e0153f
27
pkgs/tools/security/notation/default.nix
Normal file
27
pkgs/tools/security/notation/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "notation";
|
||||
version = "1.0.0-rc.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "notaryproject";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-EM2QunSL88Am3zgKwgI94jET3xaVfvsa4MCtMZ3ejjU=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-88PCnIm7nQB8jLzrfVOyDLXWX7RZeT31n1cwvb4Qza0=";
|
||||
|
||||
# This is a Go sub-module and cannot be built directly (e2e tests).
|
||||
excludedPackages = [ "./test" ];
|
||||
|
||||
ldflags = [ "-s" "-w" ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -10754,6 +10754,8 @@ with pkgs;
|
||||
|
||||
notary = callPackage ../tools/security/notary { };
|
||||
|
||||
notation = callPackage ../tools/security/notation { };
|
||||
|
||||
notify-osd = callPackage ../applications/misc/notify-osd { };
|
||||
|
||||
notes-up = callPackage ../applications/office/notes-up { };
|
||||
|
Loading…
Reference in New Issue
Block a user