mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 16:15:30 +00:00
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ stdenv, buildGoPackage, fetchFromGitHub, buildPackages, installShellFiles }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "rclone";
|
|
version = "1.51.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0z4kaq6wnj5dgl52g7f86phxlvnk5pbpda7prgh3hahpyhxj0z7d";
|
|
};
|
|
|
|
goPackagePath = "github.com/rclone/rclone";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall =
|
|
let
|
|
rcloneBin =
|
|
if stdenv.buildPlatform == stdenv.hostPlatform
|
|
then "$out"
|
|
else stdenv.lib.getBin buildPackages.rclone;
|
|
in
|
|
''
|
|
installManPage $src/rclone.1
|
|
for shell in bash zsh; do
|
|
${rcloneBin}/bin/rclone genautocomplete $shell rclone.$shell
|
|
installShellCompletion rclone.$shell
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.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 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|