geesefs: init at 0.41.0

This is a fork of Goofys.
This commit is contained in:
Florian Klink 2024-05-30 12:01:34 +02:00
parent 340d46ceac
commit babcf8c5b3

View File

@ -0,0 +1,33 @@
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
}:
let version = "0.41.0";
in buildGoModule {
pname = "geesefs";
inherit version;
src = fetchFromGitHub {
owner = "yandex-cloud";
repo = "geesefs";
rev = "v${version}";
hash = "sha256-tOioEimL4+xf19sdMwRS8tRmKKxLXmR8DWMEmvRqdJM=";
};
# hashes differ per architecture otherwise.
proxyVendor = true;
vendorHash = "sha256-pO6ZngGw9vp47cstOTpQ/lBpBQRXIUuSuhsldZPR5Sk=";
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";
};
}