mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
31 lines
807 B
Nix
31 lines
807 B
Nix
{ lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "gcsfuse";
|
|
version = "0.29.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "googlecloudplatform";
|
|
repo = "gcsfuse";
|
|
rev = "v${version}";
|
|
sha256 = "11an7cxgg3x830mwlhyx50xkcv7zpa9aziz6gz1crwp8shr4hdik";
|
|
};
|
|
|
|
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
|
|
'';
|
|
|
|
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 = [];
|
|
};
|
|
}
|