notation: 1.0.1 -> 1.1.0

This commit is contained in:
Aaron Jheng 2024-01-25 16:32:50 +08:00
parent 19f815760d
commit 61da1bf730
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

View file

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "notation";
version = "1.0.1";
version = "1.1.0";
src = fetchFromGitHub {
owner = "notaryproject";
repo = pname;
rev = "v${version}";
hash = "sha256-KcB5l6TRZhciXO04mz5iORR4//cAhrh+o4Kdq7LA4A4=";
hash = "sha256-MJBFdtx+HkPCN1SIohKOy33BW746GNN2fWkr7TIuBmk=";
};
vendorHash = "sha256-r58ZV63KIHKxh5HDeQRfd0OF0s7xpC4sXvsYLhm8AIE=";
vendorHash = "sha256-USkufc1dG4eyRfRJHSX4mVZHnvOc5onHenF98Aedac4=";
# This is a Go sub-module and cannot be built directly (e2e tests).
excludedPackages = [ "./test" ];
@ -33,5 +33,6 @@ buildGoModule rec {
homepage = "https://notaryproject.dev/";
license = licenses.asl20;
maintainers = with maintainers; [ aaronjheng ];
mainProgram = "notation";
};
}