rclone: 1.33 -> 1.35

This commit is contained in:
Daniel Fullmer
2017-01-02 19:27:42 -05:00
parent 59dbcefaa7
commit 76d37ce3b7
3 changed files with 8 additions and 228 deletions
@@ -1,8 +1,8 @@
{ stdenv, buildGoPackage, fetchFromGitHub, fetchhg, fetchbzr, fetchsvn }:
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "rclone-${version}";
version = "1.33";
version = "1.35";
goPackagePath = "github.com/ncw/rclone";
@@ -10,16 +10,14 @@ buildGoPackage rec {
owner = "ncw";
repo = "rclone";
rev = "v${version}";
sha256 = "00y48ww40x73xpdvkzfhllwvbh9a2ffmmkc6ri9343wvmb53laqk";
sha256 = "15dmppb7qgr3vg76dsv770l51lmsl8n8k3rvbnhhks5a2cz0kf2i";
};
goDeps = ./deps.nix;
meta = {
meta = with stdenv.lib; {
description = "Command line program to sync files and directories to and from major cloud storage";
homepage = "http://rclone.org";
license = stdenv.lib.licenses.mit;
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
license = licenses.mit;
maintainers = with maintainers; [ danielfullmer ];
platforms = platforms.all;
};
}