27 lines
346 B
Nix
27 lines
346 B
Nix
let
|
|
|
|
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
|
|
|
|
pkgs = import nixpkgs { config = {}; overlays = []; };
|
|
|
|
in
|
|
|
|
|
|
pkgs.mkShell {
|
|
|
|
packages = with pkgs; [
|
|
|
|
bash
|
|
limine
|
|
xorriso
|
|
rustup
|
|
qemu
|
|
|
|
];
|
|
|
|
shellHook = ''
|
|
rustup default stable;
|
|
rustup target add x86_64-unknown-none
|
|
'';
|
|
|
|
} |