nixpkgs/pkgs/tools/filesystems/gcsfuse/default.nix

26 lines
670 B
Nix
Raw Normal View History

2016-09-26 00:51:04 -07:00
# This file was generated by go2nix.
2016-09-29 07:48:03 -07:00
{ lib, buildGoPackage, fetchgit }:
2016-09-26 00:51:04 -07:00
buildGoPackage rec {
name = "gcsfuse-${version}";
2017-09-09 20:19:06 -07:00
version = "0.23.0";
rev = "v${version}";
2016-09-26 00:51:04 -07:00
goPackagePath = "github.com/googlecloudplatform/gcsfuse";
src = fetchgit {
inherit rev;
url = "https://github.com/googlecloudplatform/gcsfuse";
2017-09-09 20:19:06 -07:00
sha256 = "1qxbpsmz22l5w4b7wbgfdq4v85cfc9ka9i8h4c56nals1x5lcsnx";
2016-09-26 00:51:04 -07:00
};
meta = {
2016-09-28 21:47:48 -07:00
license = lib.licenses.asl20;
platforms = lib.platforms.unix;
2016-09-28 21:47:48 -07:00
maintainers = [];
homepage = https://cloud.google.com/storage/docs/gcs-fuse;
description =
"A user-space file system for interacting with Google Cloud Storage";
2016-09-26 00:51:04 -07:00
};
}