maintainers/scripts/update: add dependencies to nativeBuildInputs

This allows update.nix to work with a pure shell.
This commit is contained in:
David McFarland 2024-11-09 16:55:03 -04:00
parent 9fb173da94
commit 3d38ecca0c

View File

@ -231,4 +231,5 @@ in pkgs.stdenv.mkDerivation {
unset shellHook # do not contaminate nested shells
exec ${pkgs.python3.interpreter} ${./update.py} ${builtins.concatStringsSep " " args}
'';
nativeBuildInputs = [ pkgs.git pkgs.nix pkgs.cacert ];
}