summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorCorbin <cds@corbinsimpson.com>2016-09-28 21:47:48 -0700
committerCorbin <cds@corbinsimpson.com>2016-09-28 21:47:48 -0700
commit1819d941b04189b628fa02ec62786d27b6aaaa05 (patch)
tree04ee591b723dde6a0362400a7599b15bd1b30175 /pkgs
parenteef90e4153b5e94579d9c1055083c37f8f780ce1 (diff)
downloadnixlib-1819d941b04189b628fa02ec62786d27b6aaaa05.tar
nixlib-1819d941b04189b628fa02ec62786d27b6aaaa05.tar.gz
nixlib-1819d941b04189b628fa02ec62786d27b6aaaa05.tar.bz2
nixlib-1819d941b04189b628fa02ec62786d27b6aaaa05.tar.lz
nixlib-1819d941b04189b628fa02ec62786d27b6aaaa05.tar.xz
nixlib-1819d941b04189b628fa02ec62786d27b6aaaa05.tar.zst
nixlib-1819d941b04189b628fa02ec62786d27b6aaaa05.zip
Address code review feedback.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/filesystems/gcsfuse/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/tools/filesystems/gcsfuse/default.nix b/pkgs/tools/filesystems/gcsfuse/default.nix
index 7dd679402260..f6c668b6d001 100644
--- a/pkgs/tools/filesystems/gcsfuse/default.nix
+++ b/pkgs/tools/filesystems/gcsfuse/default.nix
@@ -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";
   };
 }