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

26 lines
671 B
Nix
Raw Normal View History

2016-09-26 07:51:04 +00:00
# This file was generated by go2nix.
2016-09-29 14:48:03 +00:00
{ lib, buildGoPackage, fetchgit }:
2016-09-26 07:51:04 +00:00
buildGoPackage rec {
name = "gcsfuse-${version}";
2017-09-10 03:19:06 +00:00
version = "0.23.0";
rev = "v${version}";
2016-09-26 07:51:04 +00:00
goPackagePath = "github.com/googlecloudplatform/gcsfuse";
src = fetchgit {
inherit rev;
url = "https://github.com/googlecloudplatform/gcsfuse";
2017-09-10 03:19:06 +00:00
sha256 = "1qxbpsmz22l5w4b7wbgfdq4v85cfc9ka9i8h4c56nals1x5lcsnx";
2016-09-26 07:51:04 +00:00
};
meta = {
2016-09-29 04:47:48 +00:00
license = lib.licenses.asl20;
2017-04-08 03:01:20 +00:00
platforms = lib.platforms.linux;
2016-09-29 04:47:48 +00: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 07:51:04 +00:00
};
}