nixpkgs/pkgs/applications/networking/sync/rclone/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
2.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, buildGoModule, fetchFromGitHub, buildPackages, installShellFiles
, makeWrapper
, enableCmount ? true, fuse, fuse3, macfuse-stubs
, librclone
}:
2020-09-02 21:21:21 +00:00
buildGoModule rec {
2019-02-23 00:35:27 +00:00
pname = "rclone";
2024-03-10 14:31:22 +00:00
version = "1.66.0";
src = fetchFromGitHub {
2024-03-10 14:31:22 +00:00
owner = "rclone";
repo = "rclone";
rev = "v${version}";
2024-03-10 14:31:22 +00:00
hash = "sha256-75RnAROICtRUDn95gSCNO0F6wes4CkJteNfUN38GQIY=";
};
2024-03-10 14:31:22 +00:00
vendorHash = "sha256-zGBwgIuabLDqWbutvPHDbPRo5Dd9kNfmgToZXy7KVgI=";
subPackages = [ "." ];
2017-07-23 01:29:21 +00:00
outputs = [ "out" "man" ];
2019-02-23 00:35:27 +00:00
buildInputs = lib.optional enableCmount (if stdenv.isDarwin then macfuse-stubs else fuse);
nativeBuildInputs = [ installShellFiles makeWrapper ];
2020-04-26 03:16:53 +00:00
tags = lib.optionals enableCmount [ "cmount" ];
ldflags = [ "-s" "-w" "-X github.com/rclone/rclone/fs.Version=${version}" ];
2020-09-02 21:21:21 +00:00
2020-02-01 11:27:00 +00:00
postInstall =
let
rcloneBin =
2023-03-16 16:14:31 +00:00
if stdenv.buildPlatform.canExecute stdenv.hostPlatform
then "$out"
2021-01-15 13:21:58 +00:00
else lib.getBin buildPackages.rclone;
2020-02-01 11:27:00 +00:00
in
2020-09-02 21:21:21 +00:00
''
installManPage rclone.1
for shell in bash zsh fish; do
${rcloneBin}/bin/rclone genautocomplete $shell rclone.$shell
installShellCompletion rclone.$shell
done
# filesystem helpers
ln -s $out/bin/rclone $out/bin/rclonefs
ln -s $out/bin/rclone $out/bin/mount.rclone
'' + lib.optionalString (enableCmount && !stdenv.isDarwin)
# use --suffix here to ensure we don't shadow /run/wrappers/bin/fusermount3,
# as the setuid wrapper is required as non-root on NixOS.
''
wrapProgram $out/bin/rclone \
--suffix PATH : "${lib.makeBinPath [ fuse3 ] }" \
--prefix LD_LIBRARY_PATH : "${fuse3}/lib"
2020-09-02 21:21:21 +00:00
'';
2017-07-23 01:29:21 +00:00
passthru.tests = {
inherit librclone;
};
meta = with lib; {
description = "Command line program to sync files and directories to and from major cloud storage";
homepage = "https://rclone.org";
changelog = "https://github.com/rclone/rclone/blob/v${version}/docs/content/changelog.md";
2017-01-02 22:43:07 +00:00
license = licenses.mit;
2023-10-28 20:28:06 +00:00
mainProgram = "rclone";
2024-04-27 12:41:20 +00:00
maintainers = with maintainers; [ SuperSandro2000 tomfitzhenry ];
};
}