33 lines
884 B
Nix
33 lines
884 B
Nix
{ lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "gcsfuse";
|
|
version = "0.32.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "googlecloudplatform";
|
|
repo = "gcsfuse";
|
|
rev = "v${version}";
|
|
sha256 = "09k7479gd9rlzmxhcvc1b3ajy8frzd6881vnlvk3z9818n4aq7qc";
|
|
};
|
|
|
|
goPackagePath = "github.com/googlecloudplatform/gcsfuse";
|
|
|
|
subPackages = [ "." "tools/mount_gcsfuse" ];
|
|
|
|
postInstall = ''
|
|
ln -s $out/bin/mount_gcsfuse $out/bin/mount.gcsfuse
|
|
ln -s $out/bin/mount_gcsfuse $out/bin/mount.fuse.gcsfuse
|
|
'';
|
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X main.gcsfuseVersion=${version}" ];
|
|
|
|
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 = [];
|
|
};
|
|
}
|