summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-06-13 06:04:48 +0000
committerGitHub <noreply@github.com>2021-06-13 06:04:48 +0000
commitec4b7ebf8686e1162e2e7406996a2650a34870d4 (patch)
tree767e728edbfb8378ec3da82194c9dd3374907e4f /pkgs/tools/filesystems
parent261638938ead7140453afd8d6d579f0a7d284270 (diff)
parentfce0206462cd8b80eaca59542d0c53713044050f (diff)
downloadnixpkgs-ec4b7ebf8686e1162e2e7406996a2650a34870d4.tar
nixpkgs-ec4b7ebf8686e1162e2e7406996a2650a34870d4.tar.gz
nixpkgs-ec4b7ebf8686e1162e2e7406996a2650a34870d4.tar.bz2
nixpkgs-ec4b7ebf8686e1162e2e7406996a2650a34870d4.tar.lz
nixpkgs-ec4b7ebf8686e1162e2e7406996a2650a34870d4.tar.xz
nixpkgs-ec4b7ebf8686e1162e2e7406996a2650a34870d4.tar.zst
nixpkgs-ec4b7ebf8686e1162e2e7406996a2650a34870d4.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/goofys/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/goofys/default.nix b/pkgs/tools/filesystems/goofys/default.nix
new file mode 100644
index 00000000000..94ce7be08e5
--- /dev/null
+++ b/pkgs/tools/filesystems/goofys/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, 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 ];
+  };
+
+}