Unverified Commit d8e31f66 authored by nicoo's avatar nicoo Committed by GitHub
Browse files

nixos/systemd-boot: Avoid remote mypy executions (#263397)

parent 5337efe8
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -10,7 +10,9 @@ let
  # We check the source code in a derivation that does not depend on the
  # system configuration so that most users don't have to redo the check and require
  # the necessary dependencies.
  checkedSource = pkgs.runCommand "systemd-boot" { } ''
  checkedSource = pkgs.runCommand "systemd-boot" {
    preferLocalBuild = true;
  } ''
    install -m755 -D ${./systemd-boot-builder.py} $out
    ${lib.getExe pkgs.buildPackages.mypy} \
      --no-implicit-optional \