2019-09-07 09:51:29 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2016-09-26 08:51:04 +01:00
|
|
|
|
2019-09-07 09:51:29 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gcsfuse";
|
2019-09-07 09:51:29 +01:00
|
|
|
version = "0.28.1";
|
2016-09-26 08:51:04 +01:00
|
|
|
|
2019-09-07 09:51:29 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "googlecloudplatform";
|
|
|
|
repo = "gcsfuse";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0dh01qvsjlzji2mwznykc2nghg4f1raylvgnp6sbxv9x1kpnwx71";
|
2016-09-26 08:51:04 +01:00
|
|
|
};
|
|
|
|
|
2019-09-07 09:51:29 +01:00
|
|
|
modSha256 = "0i86xs3lq2mj22yv7jmhmb34k7lz348bakqz020xpyccllkkszy4";
|
|
|
|
|
2019-10-11 02:39:28 +01:00
|
|
|
patches = [
|
|
|
|
./go.mod.patch
|
|
|
|
./go.sum.patch
|
|
|
|
];
|
|
|
|
|
2019-09-07 09:51:29 +01:00
|
|
|
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;
|
2016-09-29 05:47:48 +01:00
|
|
|
maintainers = [];
|
2016-09-26 08:51:04 +01:00
|
|
|
};
|
|
|
|
}
|