24 lines
617 B
Nix
24 lines
617 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "rclone-${version}";
|
|
version = "1.36";
|
|
|
|
goPackagePath = "github.com/ncw/rclone";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ncw";
|
|
repo = "rclone";
|
|
rev = "v${version}";
|
|
sha256 = "1vx75ihg2j0chml8hwvngjkjw647cai9gicfy8ss6xsrm46w59b3";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Command line program to sync files and directories to and from major cloud storage";
|
|
homepage = "http://rclone.org";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ danielfullmer ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|