Merge pull request #68250 from jonringer/bump-gcsfuse
gcsfuse: 0.23.0 -> 0.28.1
This commit is contained in:
commit
1aaba2ad85
@ -1,25 +1,23 @@
|
|||||||
# This file was generated by go2nix.
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
{ lib, buildGoPackage, fetchgit }:
|
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "gcsfuse";
|
pname = "gcsfuse";
|
||||||
version = "0.23.0";
|
version = "0.28.1";
|
||||||
rev = "v${version}";
|
|
||||||
|
|
||||||
goPackagePath = "github.com/googlecloudplatform/gcsfuse";
|
src = fetchFromGitHub {
|
||||||
|
owner = "googlecloudplatform";
|
||||||
src = fetchgit {
|
repo = "gcsfuse";
|
||||||
inherit rev;
|
rev = "v${version}";
|
||||||
url = "https://github.com/googlecloudplatform/gcsfuse";
|
sha256 = "0dh01qvsjlzji2mwznykc2nghg4f1raylvgnp6sbxv9x1kpnwx71";
|
||||||
sha256 = "1qxbpsmz22l5w4b7wbgfdq4v85cfc9ka9i8h4c56nals1x5lcsnx";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
modSha256 = "0i86xs3lq2mj22yv7jmhmb34k7lz348bakqz020xpyccllkkszy4";
|
||||||
license = lib.licenses.asl20;
|
|
||||||
platforms = lib.platforms.unix;
|
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 = [];
|
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 New Issue
Block a user