summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/sync/rclone/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/sync/rclone/default.nix')
-rw-r--r--pkgs/applications/networking/sync/rclone/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/sync/rclone/default.nix b/pkgs/applications/networking/sync/rclone/default.nix
index 57925a3292d8..2fde398b2f5f 100644
--- a/pkgs/applications/networking/sync/rclone/default.nix
+++ b/pkgs/applications/networking/sync/rclone/default.nix
@@ -15,7 +15,7 @@ buildGoPackage rec {
subPackages = [ "." ];
- outputs = [ "bin" "out" "man" ];
+ outputs = [ "out" "man" ];
nativeBuildInputs = [ installShellFiles ];
@@ -23,7 +23,7 @@ buildGoPackage rec {
let
rcloneBin =
if stdenv.buildPlatform == stdenv.hostPlatform
- then "$bin"
+ then "$out"
else stdenv.lib.getBin buildPackages.rclone;
in
''