about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorAdam Joseph <adam@westernsemico.com>2023-12-06T06·50-0800
committerclbot <clbot@tvl.fyi>2023-12-06T07·46+0000
commit9bb50a89b786edf72e086c5a426a528208729b98 (patch)
tree4a0bb3bc6ed7a9eec73f3c4b15bc17f4d0db83fa /third_party
parent49b34183e3f2591c6e18d44689acb6fd70eab1bf (diff)
chore(third_party/geesefs): reduce number of emitted lib.warn r/7121
This commit converts the geesefs hash to SRI, in order to avoid the
following warning being emitted when building `ci.targets`:

  trace: warning: `vendorSha256` is deprecated. Use `vendorHash` instead

Change-Id: I1e74891382c81a9291723af9f31744b4fe4250e2
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10201
Reviewed-by: flokli <flokli@flokli.de>
Autosubmit: Adam Joseph <adam@westernsemico.com>
Tested-by: BuildkiteCI
Diffstat (limited to 'third_party')
-rw-r--r--third_party/geesefs/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/geesefs/default.nix b/third_party/geesefs/default.nix
index 8c964e5891..7e140cfb81 100644
--- a/third_party/geesefs/default.nix
+++ b/third_party/geesefs/default.nix
@@ -16,7 +16,7 @@ pkgs.buildGoModule rec {
 
   subPackages = [ "." ];
   buildInputs = [ pkgs.fuse ];
-  vendorSha256 = "00w4jvcpgwh01ddhmlqcnyf4w9gh9bv1g12y9imbhba9cgmg20z5";
+  vendorSha256 = "sha256-5QPx6mNJLbhqTF6EF/ZK8CVOnLcM0wpbCwDyd9mWhAM=";
 
   meta = with pkgs.lib; {
     license = licenses.asl20;