summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/gcsfuse/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/gcsfuse/default.nix b/pkgs/tools/filesystems/gcsfuse/default.nix
new file mode 100644
index 000000000000..06190a8f03da
--- /dev/null
+++ b/pkgs/tools/filesystems/gcsfuse/default.nix
@@ -0,0 +1,25 @@
+# This file was generated by go2nix.
+{ lib, buildGoPackage, fetchgit }:
+
+buildGoPackage rec {
+  name = "gcsfuse-${version}";
+  version = "v0.19.0";
+  rev = "81281027c0093e3f916a6e611a128ec5c3a12ece";
+
+  goPackagePath = "github.com/googlecloudplatform/gcsfuse";
+
+  src = fetchgit {
+    inherit rev;
+    url = "https://github.com/googlecloudplatform/gcsfuse";
+    sha256 = "1lj9czippsgkhr8y3r7vwxgc8i952v76v1shdv10p43gsxwyyi9a";
+  };
+
+  # TODO: add metadata https://nixos.org/nixpkgs/manual/#sec-standard-meta-attributes
+  meta = {
+    license = lib.licenses.asl20;
+    maintainers = [];
+    homepage = https://cloud.google.com/storage/docs/gcs-fuse;
+    description =
+      "A user-space file system for interacting with Google Cloud Storage";
+  };
+}