summaryrefslogtreecommitdiff
path: root/kernel/shell.nix
blob: 4fc72afa344e653daeb2bff1077afa80e9cee53d (plain)
1
2
3
4
5
6
7
8
with import <nixpkgs> { };
mkShell {
  name = "uff-os";
  buildInputs = [ rustup nasm grub2 cargo-xbuild gcc xorriso ];
  shellHook = ''
    export GRUB_i386="${grub2}/lib/grub/i386-pc"
  '';
}