2025-08-12 20:09:29 +00:00

36 lines
764 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
let
version = "0.43.2";
in
buildGoModule {
pname = "geesefs";
inherit version;
src = fetchFromGitHub {
owner = "yandex-cloud";
repo = "geesefs";
rev = "v${version}";
hash = "sha256-Ry0IEbjojMFyY37HL+ZIhV6XHGv1iZf9SoV/U/2JdRI=";
};
# hashes differ per architecture otherwise.
proxyVendor = true;
vendorHash = "sha256-SQgYB6nLSnqKUntWGJL+dQD+cAPQ69Rjdq1GXIt21xg=";
subPackages = [ "." ];
meta = {
homepage = "https://github.com/yandex-cloud/geesefs";
description = "Finally, a good FUSE FS implementation over S3";
license = [ lib.licenses.mit ];
maintainers = [ lib.maintainers.flokli ];
platforms = lib.platforms.unix;
mainProgram = "geesefs";
};
}