mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
geesefs: init at 0.41.0
This is a fork of Goofys.
This commit is contained in:
parent
340d46ceac
commit
babcf8c5b3
33
pkgs/by-name/ge/geesefs/package.nix
Normal file
33
pkgs/by-name/ge/geesefs/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user