{ lib, buildGoModule, fetchFromGitHub, }: buildGoModule rec { pname = "geesefs"; version = "0.43.5"; src = fetchFromGitHub { owner = "yandex-cloud"; repo = "geesefs"; rev = "v${version}"; hash = "sha256-cfeL7fnxS+UFUlRVLiO09GHuEOvkiH5PkKcoH+jNRhY="; }; proxyVendor = true; vendorHash = "sha256-p+shpYrPxYLXpW6A4a/5qM90KH+pcMCqZOPoYTE77f0="; subPackages = [ "." ]; meta = { description = "FUSE FS implementation over S3"; homepage = "https://github.com/yandex-cloud/geesefs"; license = [ lib.licenses.mit ]; platforms = lib.platforms.unix; }; }