summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-10-06 18:22:53 +0200
committerGitHub <noreply@github.com>2019-10-06 18:22:53 +0200
commit1aaba2ad859aeb1276a11a7cd2a7b15d48a3f0c0 (patch)
tree19c1c3f5da45fd50ef8f30d90d63ce10c665bd92 /pkgs/tools/filesystems
parent50bd8979084c0f21b54069a582df25cb668fd81c (diff)
parent44fe29b1bb41140eae04d6279991a10315e5adcc (diff)
downloadnixpkgs-1aaba2ad859aeb1276a11a7cd2a7b15d48a3f0c0.tar
nixpkgs-1aaba2ad859aeb1276a11a7cd2a7b15d48a3f0c0.tar.gz
nixpkgs-1aaba2ad859aeb1276a11a7cd2a7b15d48a3f0c0.tar.bz2
nixpkgs-1aaba2ad859aeb1276a11a7cd2a7b15d48a3f0c0.tar.lz
nixpkgs-1aaba2ad859aeb1276a11a7cd2a7b15d48a3f0c0.tar.xz
nixpkgs-1aaba2ad859aeb1276a11a7cd2a7b15d48a3f0c0.tar.zst
nixpkgs-1aaba2ad859aeb1276a11a7cd2a7b15d48a3f0c0.zip
Merge pull request #68250 from jonringer/bump-gcsfuse
gcsfuse: 0.23.0 -> 0.28.1
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/gcsfuse/default.nix32
1 files changed, 15 insertions, 17 deletions
diff --git a/pkgs/tools/filesystems/gcsfuse/default.nix b/pkgs/tools/filesystems/gcsfuse/default.nix
index fe46fccf271..8ce87375b26 100644
--- a/pkgs/tools/filesystems/gcsfuse/default.nix
+++ b/pkgs/tools/filesystems/gcsfuse/default.nix
@@ -1,25 +1,23 @@
-# This file was generated by go2nix.
-{ lib, buildGoPackage, fetchgit }:
+{ lib, buildGoModule, fetchFromGitHub }:
 
-buildGoPackage rec {
+buildGoModule rec {
   pname = "gcsfuse";
-  version = "0.23.0";
-  rev = "v${version}";
+  version = "0.28.1";
 
-  goPackagePath = "github.com/googlecloudplatform/gcsfuse";
-
-  src = fetchgit {
-    inherit rev;
-    url = "https://github.com/googlecloudplatform/gcsfuse";
-    sha256 = "1qxbpsmz22l5w4b7wbgfdq4v85cfc9ka9i8h4c56nals1x5lcsnx";
+  src = fetchFromGitHub {
+    owner = "googlecloudplatform";
+    repo = "gcsfuse";
+    rev = "v${version}";
+    sha256 = "0dh01qvsjlzji2mwznykc2nghg4f1raylvgnp6sbxv9x1kpnwx71";
   };
 
-  meta = {
-    license = lib.licenses.asl20;
-    platforms = lib.platforms.unix;
+  modSha256 = "0i86xs3lq2mj22yv7jmhmb34k7lz348bakqz020xpyccllkkszy4";
+
+  meta = with lib;{
+    description = "A user-space file system for interacting with Google Cloud Storage";
+    homepage = "https://cloud.google.com/storage/docs/gcs-fuse";
+    license = licenses.asl20;
+    platforms = platforms.unix;
     maintainers = [];
-    homepage = https://cloud.google.com/storage/docs/gcs-fuse;
-    description =
-      "A user-space file system for interacting with Google Cloud Storage";
   };
 }