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