2019-06-16 12:59:06 -07:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
2016-06-29 21:47:43 -07:00
|
|
|
|
2019-04-13 19:08:10 -07:00
|
|
|
buildGoModule rec {
|
2019-02-22 16:35:27 -08:00
|
|
|
pname = "rclone";
|
2019-04-13 19:08:10 -07:00
|
|
|
version = "1.47.0";
|
2016-06-29 21:47:43 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ncw";
|
2019-04-13 19:08:10 -07:00
|
|
|
repo = pname;
|
2016-06-29 21:47:43 -07:00
|
|
|
rev = "v${version}";
|
2019-04-13 19:08:10 -07:00
|
|
|
sha256 = "1nxwjr9jly6wh1ixr6a7zhlg4b3298v940040fsm0n3lcljd37zx";
|
2016-06-29 21:47:43 -07:00
|
|
|
};
|
|
|
|
|
2019-04-13 19:08:10 -07:00
|
|
|
modSha256 = "02p5dd450bbfyq80nd0w8f9kpv25k1855mf0gcv0cy9zq3f3r7q7";
|
|
|
|
|
|
|
|
subPackages = [ "." ];
|
2017-07-22 18:29:21 -07:00
|
|
|
|
2019-04-13 19:08:10 -07:00
|
|
|
outputs = [ "out" "man" ];
|
2019-02-22 16:35:27 -08:00
|
|
|
|
2017-07-22 18:29:21 -07:00
|
|
|
postInstall = ''
|
|
|
|
install -D -m644 $src/rclone.1 $man/share/man/man1/rclone.1
|
|
|
|
'';
|
|
|
|
|
2017-01-02 14:43:07 -08:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-29 21:47:43 -07:00
|
|
|
description = "Command line program to sync files and directories to and from major cloud storage";
|
2018-06-27 13:12:57 -07:00
|
|
|
homepage = https://rclone.org;
|
2017-01-02 14:43:07 -08:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ danielfullmer ];
|
|
|
|
platforms = platforms.all;
|
2016-06-29 21:47:43 -07:00
|
|
|
};
|
|
|
|
}
|