mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gcsfuse";
|
|
version = "0.42.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "googlecloudplatform";
|
|
repo = "gcsfuse";
|
|
rev = "v${version}";
|
|
hash = "sha256-ME0xoi1KEzw99GmKQeeNHVjIH3UlBnP6/b50xJcPA/I=";
|
|
};
|
|
|
|
vendorHash = "sha256-oTELdPPkKBQFBIRhjns6t3wj84RQhDVOi95seNyeeR0=";
|
|
|
|
subPackages = [ "." "tools/mount_gcsfuse" ];
|
|
|
|
ldflags = [ "-s" "-w" "-X main.gcsfuseVersion=${version}" ];
|
|
|
|
preCheck =
|
|
let
|
|
skippedTests = [
|
|
"Test_Main"
|
|
"TestFlags"
|
|
];
|
|
in
|
|
''
|
|
# Disable flaky tests
|
|
buildFlagsArray+=("-run" "[^(${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 = "A 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; [ aaronjheng ];
|
|
};
|
|
}
|