gila/shell.nix
August f438a722f6
All checks were successful
Continuous Integration / Check (push) Successful in 58s
Continuous Integration / Clippy (push) Successful in 49s
More testing with GDT
2026-06-26 12:15:45 +00:00

30 lines
499 B
Nix

let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShell {
packages = with pkgs; [
bash
limine-full
xorriso
rustup
qemu
cargo-make
];
buildInputs = with pkgs; [
limine-full
];
shellHook = ''
echo $TMPDIR;
rustup default nightly;
rustup target add x86_64-unknown-none;
export LIMINEDIR="${pkgs.limine-full}/share/limine"
'';
}