nixpkgs/pkgs/applications/networking/sync/rclone/default.nix
Emery Hemingway 182c16fa1e Revert "rclone: 1.49.5 -> 1.50.0"
This reverts commit aec323c1c0.

Ref #3685
Ref #72063
2019-10-29 14:18:01 +01:00

31 lines
760 B
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "rclone";
version = "1.49.5";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "0firfb2300grfp5fnqaifhp346m4d0x8r1xshs9d8r6jxb160n03";
};
goPackagePath = "github.com/rclone/rclone";
subPackages = [ "." ];
outputs = [ "bin" "out" "man" ];
postInstall = ''
install -D -m644 $src/rclone.1 $man/share/man/man1/rclone.1
'';
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;
};
}