summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-07-08 08:03:57 -0500
committerGitHub <noreply@github.com>2020-07-08 08:03:57 -0500
commit40f4680d3d6678e1ce47929380391f78af486706 (patch)
tree08ae977d6ad7e7930727f1e3551cb24e13e5df79 /pkgs/tools/filesystems
parent9b2a1ea654ff42d341c2ecac902ff287f90864ef (diff)
parente0775fecf2e8cacb37d48d0894f6859ddc3c2657 (diff)
downloadnixpkgs-40f4680d3d6678e1ce47929380391f78af486706.tar
nixpkgs-40f4680d3d6678e1ce47929380391f78af486706.tar.gz
nixpkgs-40f4680d3d6678e1ce47929380391f78af486706.tar.bz2
nixpkgs-40f4680d3d6678e1ce47929380391f78af486706.tar.lz
nixpkgs-40f4680d3d6678e1ce47929380391f78af486706.tar.xz
nixpkgs-40f4680d3d6678e1ce47929380391f78af486706.tar.zst
nixpkgs-40f4680d3d6678e1ce47929380391f78af486706.zip
Merge pull request #92687 from r-ryantm/auto-update/gcsfuse
gcsfuse: 0.29.0 -> 0.30.0
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/gcsfuse/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/gcsfuse/default.nix b/pkgs/tools/filesystems/gcsfuse/default.nix
index 3f0e261b18d..89fa3ebe33b 100644
--- a/pkgs/tools/filesystems/gcsfuse/default.nix
+++ b/pkgs/tools/filesystems/gcsfuse/default.nix
@@ -2,13 +2,13 @@
 
 buildGoPackage rec {
   pname = "gcsfuse";
-  version = "0.29.0";
+  version = "0.30.0";
 
   src = fetchFromGitHub {
     owner = "googlecloudplatform";
     repo = "gcsfuse";
     rev = "v${version}";
-    sha256 = "11an7cxgg3x830mwlhyx50xkcv7zpa9aziz6gz1crwp8shr4hdik";
+    sha256 = "1ai1dgf07g2c08rp87kygrl67hyj7x793093wmnwaxfpylx5flv0";
   };
 
   goPackagePath = "github.com/googlecloudplatform/gcsfuse";
@@ -20,6 +20,8 @@ buildGoPackage rec {
     ln -s $out/bin/mount_gcsfuse $out/bin/mount.fuse.gcsfuse
   '';
 
+  buildFlagsArray = [ "-ldflags=-s -w -X main.gcsfuseVersion=${version}" ];
+
   meta = with lib;{
     description = "A user-space file system for interacting with Google Cloud Storage";
     homepage = "https://cloud.google.com/storage/docs/gcs-fuse";