Skip to content

Commit

Permalink
Use old rclone
Browse files Browse the repository at this point in the history
Signed-off-by: Joonas Rautiola <[email protected]>
  • Loading branch information
joinemm committed Dec 9, 2024
1 parent 979690d commit 464261b
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions pkgs/rclone/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# SPDX-FileCopyrightText: 2022-2024 TII (SSRC) and the Ghaf contributors
# SPDX-License-Identifier: Apache-2.0
{ pkgs, ... }:
pkgs.rclone.overrideAttrs (oldAttrs: {
# These will be included in rclone v1.68.0
patches = (oldAttrs.patches or [ ]) ++ [
# https://github.com/rclone/rclone/pull/7801
./http-socket-activation.patch
{ pkgs, fetchFromGitHub, ... }:
pkgs.rclone.overrideAttrs (_: rec {
version = "1.68.0";

# https://github.com/rclone/rclone/pull/7865
./webdav-introduce-unix_socket_path.patch
];
src = fetchFromGitHub {
owner = "rclone";
repo = "rclone";
rev = "v${version}";
hash = "sha256-xLTzfS3/9XBqh0B7/VeRKYEHAgc4rY3QcIUS3f1/e0M=";
};

vendorHash = "sha256-vZxdayoKTo/fs5PgEdT4gepNq0kNNmLQhlybWY5kpx0=";
})

0 comments on commit 464261b

Please sign in to comment.