summary refs log tree commit diff
path: root/pkgs/tools/filesystems/goofys/default.nix
blob: 16c555473f3c734167076615fc085e595fa5f4ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
}:

buildGoModule {
  pname = "goofys";
  version = "unstable-2021-03-26";

  src = fetchFromGitHub {
    owner = "kahing";
    repo = "goofys";
    # Same as v0.24.0 but migrated to Go modules
    rev = "0c993271269b539196330a18716a33fbeeebd624";
    sha256 = "18is5sv2a9wmsm0qpakly988z1qyl2b2hf2105lpxrgl659sf14p";
  };

  vendorSha256 = "15yq0msh9icxd5n2zkkqrlwxifizhpa99d4aznv8clg32ybs61fj";

  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.";
    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
  };

}