shell.nix 417 B

1234567891011121314151617
  1. let
  2. sources = import ./nix/sources.nix;
  3. pkgs = import sources.nixpkgs {};
  4. in
  5. pkgs.mkShell rec {
  6. nativeBuildInputs = with pkgs; [
  7. grub2
  8. qemu
  9. rustup
  10. xorriso
  11. ];
  12. # To invoke "nix-shell" in the CI-runner, we need a global Nix channel.
  13. # For better reproducibility inside the Nix shell, we override this channel
  14. # with the pinned nixpkgs version.
  15. NIX_PATH = "nixpkgs=${sources.nixpkgs}";
  16. }