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

26 lines
750 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}";
2016-09-29 04:47:48 +00:00
version = "v0.19.0";
2016-09-26 07:51:04 +00:00
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 = {
2016-09-29 04:47:48 +00:00
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";
2016-09-26 07:51:04 +00:00
};
}