46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{ lib, stdenv, buildGoModule, fetchFromGitHub, buildPackages, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "rclone";
|
|
version = "1.53.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "10nimrq8nmpmfk2d4fx0yp916wk5q027m283izpshrbwvx7l6xx0";
|
|
};
|
|
|
|
vendorSha256 = "1l4iz31k1pylvf0zrp4nhxna70s1ma4981x6q1s3dhszjxil5c88";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X github.com/rclone/rclone/fs.Version=${version}" ];
|
|
|
|
postInstall =
|
|
let
|
|
rcloneBin =
|
|
if stdenv.buildPlatform == stdenv.hostPlatform
|
|
then "$out"
|
|
else lib.getBin buildPackages.rclone;
|
|
in
|
|
''
|
|
installManPage rclone.1
|
|
for shell in bash zsh fish; do
|
|
${rcloneBin}/bin/rclone genautocomplete $shell rclone.$shell
|
|
installShellCompletion rclone.$shell
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Command line program to sync files and directories to and from major cloud storage";
|
|
homepage = "https://rclone.org";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ danielfullmer marsam ];
|
|
};
|
|
}
|