Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 67a4067a443d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f38d805dbe8b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 28, 2018

  1. rclone: 1.44 -> 1.45

    danielfullmer committed Nov 28, 2018
    Copy the full SHA
    bfc6803 View commit details

Commits on Nov 29, 2018

  1. Merge pull request #51186 from danielfullmer/rclone-1.45

    rclone: 1.44 -> 1.45
    Ma27 authored Nov 29, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f38d805 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/applications/networking/sync/rclone/default.nix
5 changes: 3 additions & 2 deletions pkgs/applications/networking/sync/rclone/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,16 @@

buildGoPackage rec {
name = "rclone-${version}";
version = "1.44";
version = "1.45";

goPackagePath = "github.com/ncw/rclone";
subPackages = [ "." ];

src = fetchFromGitHub {
owner = "ncw";
repo = "rclone";
rev = "v${version}";
sha256 = "0kpx9r4kksscsvia7r79z9h8ghph25ay9dgpqrnp599fq1bqky61";
sha256 = "06xg0ibv9pnrnmabh1kblvxx1pk8h5rmkr9mjbymv497sx3zgz26";
};

outputs = [ "bin" "out" "man" ];