gila/shell.nix
shibedrill a2eb0c8a25
All checks were successful
Continuous Integration / Check (push) Successful in 1m38s
Continuous Integration / Clippy (push) Successful in 54s
Re-add shell.nix
2026-06-01 23:50:05 -04:00

29 lines
480 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 = ''
rustup default nightly;
rustup target add x86_64-unknown-none
export LIMINEDIR="${pkgs.limine-full}/share/limine"
'';
}