mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Address code review feedback.
This commit is contained in:
parent
eef90e4153
commit
1819d941b0
1 changed files with 8 additions and 4 deletions
|
@ -1,9 +1,9 @@
|
|||
# This file was generated by go2nix.
|
||||
{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
|
||||
{ lib, buildGoPackage, fetchgit, fuse }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "gcsfuse-${version}";
|
||||
version = "81281027";
|
||||
version = "v0.19.0";
|
||||
rev = "81281027c0093e3f916a6e611a128ec5c3a12ece";
|
||||
|
||||
goPackagePath = "github.com/googlecloudplatform/gcsfuse";
|
||||
|
@ -14,10 +14,14 @@ buildGoPackage rec {
|
|||
sha256 = "1lj9czippsgkhr8y3r7vwxgc8i952v76v1shdv10p43gsxwyyi9a";
|
||||
};
|
||||
|
||||
# Fully vendored, apparently.
|
||||
goDeps = null;
|
||||
propagatedBuildInputs = [ fuse ];
|
||||
|
||||
# TODO: add metadata https://nixos.org/nixpkgs/manual/#sec-standard-meta-attributes
|
||||
meta = {
|
||||
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";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue