f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gcsfuse";
|
|
version = "2.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "googlecloudplatform";
|
|
repo = "gcsfuse";
|
|
rev = "v${version}";
|
|
hash = "sha256-mJOZDhNri3ZxLygWHckmF76mQkrbRJb933f+WFYw75Q=";
|
|
};
|
|
|
|
vendorHash = "sha256-9eUUjcRQ/H3iPO2F+KE0nd5+b8slc6xacXSZt3jytgU=";
|
|
|
|
subPackages = [ "." "tools/mount_gcsfuse" ];
|
|
|
|
ldflags = [ "-s" "-w" "-X main.gcsfuseVersion=${version}" ];
|
|
|
|
checkFlags =
|
|
let
|
|
skippedTests = [
|
|
# Disable flaky tests
|
|
"Test_Main"
|
|
"TestFlags"
|
|
];
|
|
in
|
|
[ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];
|
|
|
|
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 = "User-space file system for interacting with Google Cloud Storage";
|
|
homepage = "https://cloud.google.com/storage/docs/gcs-fuse";
|
|
changelog = "https://github.com/GoogleCloudPlatform/gcsfuse/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|