summary refs log tree commit diff
path: root/pkgs/tools/filesystems/gcsfuse/default.nix
blob: fe46fccf271ac0d0c0ce601e5b3a1535912738a7 (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
# This file was generated by go2nix.
{ lib, buildGoPackage, fetchgit }:

buildGoPackage rec {
  pname = "gcsfuse";
  version = "0.23.0";
  rev = "v${version}";

  goPackagePath = "github.com/googlecloudplatform/gcsfuse";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/googlecloudplatform/gcsfuse";
    sha256 = "1qxbpsmz22l5w4b7wbgfdq4v85cfc9ka9i8h4c56nals1x5lcsnx";
  };

  meta = {
    license = lib.licenses.asl20;
    platforms = lib.platforms.unix;
    maintainers = [];
    homepage = https://cloud.google.com/storage/docs/gcs-fuse;
    description =
      "A user-space file system for interacting with Google Cloud Storage";
  };
}