2020-01-15 23:18:18 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2016-09-26 08:51:04 +01:00
|
|
|
|
2020-01-15 23:18:18 +00:00
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gcsfuse";
|
2021-06-08 04:32:10 +01:00
|
|
|
version = "0.35.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}";
|
2021-06-08 04:32:10 +01:00
|
|
|
sha256 = "sha256-A6vhdECKMq0kcR7mUTPu9F0N7gVj7tOg7UXeJ/gmbnM=";
|
2016-09-26 08:51:04 +01:00
|
|
|
};
|
|
|
|
|
2020-01-15 23:18:18 +00:00
|
|
|
goPackagePath = "github.com/googlecloudplatform/gcsfuse";
|
2019-09-07 09:51:29 +01:00
|
|
|
|
2020-01-15 23:18:18 +00:00
|
|
|
subPackages = [ "." "tools/mount_gcsfuse" ];
|
|
|
|
|
|
|
|
postInstall = ''
|
2020-04-28 02:50:57 +01:00
|
|
|
ln -s $out/bin/mount_gcsfuse $out/bin/mount.gcsfuse
|
|
|
|
ln -s $out/bin/mount_gcsfuse $out/bin/mount.fuse.gcsfuse
|
2020-01-15 23:18:18 +00:00
|
|
|
'';
|
2019-10-11 02:39:28 +01:00
|
|
|
|
2020-07-08 10:20:00 +01:00
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X main.gcsfuseVersion=${version}" ];
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|