about summary refs log tree commit diff
path: root/pkgs/tools/security/notation
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2024-01-25 16:32:50 +0800
committerAaron Jheng <wentworth@outlook.com>2024-01-25 16:33:40 +0800
commit61da1bf730b0d5cf2495df65e08424d03299232d (patch)
tree49a9ce9421d9b1862a9a3f92aebb0be8b8be539a /pkgs/tools/security/notation
parent19f815760d1785594aa5009043c7708caebffdb9 (diff)
notation: 1.0.1 -> 1.1.0
Diffstat (limited to 'pkgs/tools/security/notation')
-rw-r--r--pkgs/tools/security/notation/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/security/notation/default.nix b/pkgs/tools/security/notation/default.nix
index 0164452b9bc9b..07c9ef4997172 100644
--- a/pkgs/tools/security/notation/default.nix
+++ b/pkgs/tools/security/notation/default.nix
@@ -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";
   };
 }