summary refs log tree commit diff
path: root/pkgs/tools/filesystems/gcsfuse/default.nix
blob: 086f0e0f790c876e33877d8042857b2059edce89 (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 {
  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";
  };

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