gila/shell.nix
August 7efb4ee901
Some checks failed
Continuous Integration / Clippy (push) Waiting to run
Continuous Integration / Check (push) Has been cancelled
Try spawning a process (doesn't work)
2026-07-02 02:52:52 +00:00

31 lines
518 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
cargo-binutils
];
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"
'';
}