Merge pull request #268244 from DamienCassou/blobfuse-2.1.2

This commit is contained in:
Damien Cassou 2023-11-27 09:25:58 +00:00 committed by GitHub
commit 98a0ec7a83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,18 @@
{ lib, buildGoModule, fetchFromGitHub, fuse3, testers, blobfuse }:
let
version = "2.1.0";
version = "2.1.2";
src = fetchFromGitHub {
owner = "Azure";
repo = "azure-storage-fuse";
rev = "blobfuse2-${version}";
sha256 = "sha256-+MnqIwLuR+YBTowgIQokV0kFzfYtMBdhd/+m9MOrF1Y=";
sha256 = "sha256-KzpD+6g1WwviydYE0v5pSH35zC41MrPlk5MitwAIgnE=";
};
in buildGoModule {
pname = "blobfuse";
inherit version src;
vendorHash = "sha256-WfVFV/6Owx51rHXyfMp7CRW7aQ3R5BFyfHronQ58Gik=";
vendorHash = "sha256-+Z+mkTs/8qCtYcWZIMzsW9MQsC08KDJUHNbxyc6Ro5Y=";
buildInputs = [ fuse3 ];