9bb50a89b7
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
25 lines
593 B
Nix
25 lines
593 B
Nix
# Finally, a good FUSE FS implementation over S3.
|
|
# https://github.com/yandex-cloud/geesefs
|
|
|
|
{ pkgs, ... }:
|
|
|
|
pkgs.buildGoModule rec {
|
|
pname = "geesefs";
|
|
version = "0.38.3";
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "yandex-cloud";
|
|
repo = "geesefs";
|
|
rev = "v${version}";
|
|
sha256 = "0kf0368hnards619azz8xw7cp7fm806v0aszmgq24qs9ax45dv6m";
|
|
};
|
|
|
|
subPackages = [ "." ];
|
|
buildInputs = [ pkgs.fuse ];
|
|
vendorSha256 = "sha256-5QPx6mNJLbhqTF6EF/ZK8CVOnLcM0wpbCwDyd9mWhAM=";
|
|
|
|
meta = with pkgs.lib; {
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.tazjin ];
|
|
};
|
|
}
|