shibe-bot/shell.nix
August 7b4a83f103
Some checks failed
Rust / check (push) Failing after 3m10s
Add shell.nix, log stuff
2026-07-22 23:08:58 +00:00

22 lines
359 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
gcc
rustup
openssl
];
shellHook = ''
echo $TMPDIR;
rustup default nightly;
rustup target add x86_64-unknown-none;
'';
}