nixpkgs/pkgs/tools/filesystems/gcsfuse/default.nix

33 lines
884 B
Nix
Raw Normal View History

2020-01-15 15:18:18 -08:00
{ lib, buildGoPackage, fetchFromGitHub }:
2016-09-26 00:51:04 -07:00
2020-01-15 15:18:18 -08:00
buildGoPackage rec {
pname = "gcsfuse";
2020-11-01 02:24:59 -08:00
version = "0.32.0";
2016-09-26 00:51:04 -07:00
2019-09-07 01:51:29 -07:00
src = fetchFromGitHub {
owner = "googlecloudplatform";
repo = "gcsfuse";
rev = "v${version}";
2020-11-01 02:24:59 -08:00
sha256 = "09k7479gd9rlzmxhcvc1b3ajy8frzd6881vnlvk3z9818n4aq7qc";
2016-09-26 00:51:04 -07:00
};
2020-01-15 15:18:18 -08:00
goPackagePath = "github.com/googlecloudplatform/gcsfuse";
2019-09-07 01:51:29 -07:00
2020-01-15 15:18:18 -08:00
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
2020-01-15 15:18:18 -08:00
'';
2020-07-08 02:20:00 -07:00
buildFlagsArray = [ "-ldflags=-s -w -X main.gcsfuseVersion=${version}" ];
2019-09-07 01:51:29 -07: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-28 21:47:48 -07:00
maintainers = [];
2016-09-26 00:51:04 -07:00
};
}