aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/filesystems/gcsfuse/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/filesystems/gcsfuse/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/filesystems/gcsfuse/default.nix37
1 files changed, 20 insertions, 17 deletions
diff --git a/nixpkgs/pkgs/tools/filesystems/gcsfuse/default.nix b/nixpkgs/pkgs/tools/filesystems/gcsfuse/default.nix
index fe46fccf271..af3e9250985 100644
--- a/nixpkgs/pkgs/tools/filesystems/gcsfuse/default.nix
+++ b/nixpkgs/pkgs/tools/filesystems/gcsfuse/default.nix
@@ -1,25 +1,28 @@
-# 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";
+
+ patches = [
+ ./go.mod.patch
+ ./go.sum.patch
+ ];
+
+ 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";
};
}