Skip to content

Commit

Permalink
Revert to rclone 1.66 in jenkins controller
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 88a8468
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions hosts/azure/jenkins-controller/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ let
s = client.get_secret(secret_name)
print(s.value)
'';
rclone = pkgs.callPackage ../../../pkgs/rclone { };
old-pkgs = (import inputs.nixpkgs-24-05 { inherit (pkgs) system; });
rclone = old-pkgs.callPackage ../../../pkgs/rclone { };
in
{
imports = [
Expand Down Expand Up @@ -107,7 +108,7 @@ in
# Needs to be an overlay so that it propagates to service.jenkins.jobBuilder
nixpkgs.overlays = [
(_: _: {
inherit ((import inputs.nixpkgs-24-05 { inherit (pkgs) system; })) jenkins-job-builder;
inherit (old-pkgs) jenkins-job-builder;
})
];

Expand Down

0 comments on commit 88a8468

Please sign in to comment.