Skip to content

Commit

Permalink
geesefs: init at 0.41.0
Browse files Browse the repository at this point in the history
This is a fork of Goofys.
  • Loading branch information
flokli committed May 30, 2024
1 parent 340d46c commit babcf8c
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/by-name/ge/geesefs/package.nix
Original file line number Diff line number Diff line change
@@ -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";
};
}

0 comments on commit babcf8c

Please sign in to comment.