nixpkgs/pkgs/tools/filesystems/goofys/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
953 B
Nix
Raw Normal View History

2021-06-12 22:30:58 +00:00
{ lib
2021-12-25 06:04:48 +00:00
, stdenv
2021-06-12 22:30:58 +00:00
, buildGoModule
, fetchFromGitHub
}:
buildGoModule {
pname = "goofys";
version = "unstable-2022-04-21";
2021-06-12 22:30:58 +00:00
src = fetchFromGitHub {
owner = "kahing";
repo = "goofys";
# Same as v0.24.0 but migrated to Go modules
rev = "829d8e5ce20faa3f9f6f054077a14325e00e9249";
sha256 = "sha256-6yVMNSwwPZlADXuPBDRlgoz4Stuz2pgv6r6+y2/C8XY=";
2021-06-12 22:30:58 +00:00
};
vendorHash = "sha256-shFld293pdmVcnu3p0NoBmPGLJddZd4O/gJ8klgdlQ8=";
2021-06-12 22:30:58 +00:00
subPackages = [ "." ];
# Tests are using networking
postPatch = ''
rm internal/*_test.go
'';
meta = {
homepage = "https://github.com/kahing/goofys";
description = "A high-performance, POSIX-ish Amazon S3 file system written in Go";
2021-06-12 22:30:58 +00:00
license = [ lib.licenses.mit ];
maintainers = [ lib.maintainers.adisbladis ];
broken = stdenv.isDarwin; # needs to update gopsutil to at least v3.21.3 to include https://github.com/shirou/gopsutil/pull/1042
2023-11-23 21:09:35 +00:00
mainProgram = "goofys";
2021-06-12 22:30:58 +00:00
};
}