From 2d5d6cb7f733fb9e7b6b713a6051f7d8ce253fc2 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sat, 29 Jun 2024 17:45:04 +0200 Subject: enable rsync in CI --- shell.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index 142eef8..f3c9676 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,8 @@ { pkgs ? import { } }: pkgs.mkShell { - buildInputs = [ - (pkgs.callPackage ./. { }) + buildInputs = with pkgs; [ + rsync + (callPackage ./. { }) ]; } -- cgit 1.4.1