feat(3p/geesefs): add derivation for GeeseFS
Change-Id: I93d0ccd35eb16005779a2784d1fabc3fd9ef1b83 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9492 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
parent
acfc49efc2
commit
9d7e3e4f95
1 changed files with 25 additions and 0 deletions
25
third_party/geesefs/default.nix
vendored
Normal file
25
third_party/geesefs/default.nix
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Finally, a good FUSE FS implementation over S3.
|
||||
# https://github.com/yandex-cloud/geesefs
|
||||
|
||||
{ pkgs, ... }:
|
||||
|
||||
pkgs.buildGoModule rec {
|
||||
pname = "geesefs";
|
||||
version = "0.38.3";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "yandex-cloud";
|
||||
repo = "geesefs";
|
||||
rev = "v${version}";
|
||||
sha256 = "0kf0368hnards619azz8xw7cp7fm806v0aszmgq24qs9ax45dv6m";
|
||||
};
|
||||
|
||||
subPackages = [ "." ];
|
||||
buildInputs = [ pkgs.fuse ];
|
||||
vendorSha256 = "00w4jvcpgwh01ddhmlqcnyf4w9gh9bv1g12y9imbhba9cgmg20z5";
|
||||
|
||||
meta = with pkgs.lib; {
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.tazjin ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue