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

31 lines
807 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-01-15 05:35:49 -08:00
version = "0.29.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-01-15 05:35:49 -08:00
sha256 = "11an7cxgg3x830mwlhyx50xkcv7zpa9aziz6gz1crwp8shr4hdik";
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 $bin/bin/mount_gcsfuse $bin/bin/mount.gcsfuse
ln -s $bin/bin/mount_gcsfuse $bin/bin/mount.fuse.gcsfuse
'';
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
};
}