2020-01-16 00:18:18 +01:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2016-09-26 09:51:04 +02:00
|
|
|
|
2020-01-16 00:18:18 +01:00
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gcsfuse";
|
2020-01-15 14:35:49 +01:00
|
|
|
version = "0.29.0";
|
2016-09-26 09:51:04 +02:00
|
|
|
|
2019-09-07 10:51:29 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "googlecloudplatform";
|
|
|
|
repo = "gcsfuse";
|
|
|
|
rev = "v${version}";
|
2020-01-15 14:35:49 +01:00
|
|
|
sha256 = "11an7cxgg3x830mwlhyx50xkcv7zpa9aziz6gz1crwp8shr4hdik";
|
2016-09-26 09:51:04 +02:00
|
|
|
};
|
|
|
|
|
2020-01-16 00:18:18 +01:00
|
|
|
goPackagePath = "github.com/googlecloudplatform/gcsfuse";
|
2019-09-07 10:51:29 +02:00
|
|
|
|
2020-01-16 00:18:18 +01:00
|
|
|
subPackages = [ "." "tools/mount_gcsfuse" ];
|
|
|
|
|
|
|
|
postInstall = ''
|
2020-04-28 03:50:57 +02:00
|
|
|
ln -s $out/bin/mount_gcsfuse $out/bin/mount.gcsfuse
|
|
|
|
ln -s $out/bin/mount_gcsfuse $out/bin/mount.fuse.gcsfuse
|
2020-01-16 00:18:18 +01:00
|
|
|
'';
|
2019-10-11 03:39:28 +02:00
|
|
|
|
2019-09-07 10:51:29 +02: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 06:47:48 +02:00
|
|
|
maintainers = [];
|
2016-09-26 09:51:04 +02:00
|
|
|
};
|
|
|
|
}
|