about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-07-23 10:21:03 +0100
committerGitHub <noreply@github.com>2017-07-23 10:21:03 +0100
commit239b694579ca8a9a64e86609d4e9f49d0b01be2b (patch)
tree39ce9fa8fa6187bfc21f9daa01c018ac5d02b0fe /pkgs
parentfb65f9cbc56f363d614d835f40cf59300f212909 (diff)
parent6841f7b07df0c3a24e0b72b0348b4ff000c48b8d (diff)
downloadnixlib-239b694579ca8a9a64e86609d4e9f49d0b01be2b.tar
nixlib-239b694579ca8a9a64e86609d4e9f49d0b01be2b.tar.gz
nixlib-239b694579ca8a9a64e86609d4e9f49d0b01be2b.tar.bz2
nixlib-239b694579ca8a9a64e86609d4e9f49d0b01be2b.tar.lz
nixlib-239b694579ca8a9a64e86609d4e9f49d0b01be2b.tar.xz
nixlib-239b694579ca8a9a64e86609d4e9f49d0b01be2b.tar.zst
nixlib-239b694579ca8a9a64e86609d4e9f49d0b01be2b.zip
Merge pull request #27575 from danielfullmer/rclone-1.37
rclone: 1.36 -> 1.37
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/sync/rclone/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/applications/networking/sync/rclone/default.nix b/pkgs/applications/networking/sync/rclone/default.nix
index 93b4fc764674..0888e0207a6b 100644
--- a/pkgs/applications/networking/sync/rclone/default.nix
+++ b/pkgs/applications/networking/sync/rclone/default.nix
@@ -2,7 +2,7 @@
 
 buildGoPackage rec {
   name = "rclone-${version}";
-  version = "1.36";
+  version = "1.37";
 
   goPackagePath = "github.com/ncw/rclone";
 
@@ -10,9 +10,15 @@ buildGoPackage rec {
     owner = "ncw";
     repo = "rclone";
     rev = "v${version}";
-    sha256 = "1vx75ihg2j0chml8hwvngjkjw647cai9gicfy8ss6xsrm46w59b3";
+    sha256 = "0krmdwzl4c68vxpbycqy2xba8vvqbka7xh3k2q6ldxsd8y2rypym";
   };
 
+  outputs = [ "bin" "out" "man" ];
+
+  postInstall = ''
+    install -D -m644 $src/rclone.1 $man/share/man/man1/rclone.1
+  '';
+
   meta = with stdenv.lib; {
     description = "Command line program to sync files and directories to and from major cloud storage";
     homepage = "http://rclone.org";