mirror of
https://github.com/Noratrieb/advent-of-code.git
synced 2026-01-14 09:35:01 +01:00
11 lines
218 B
Nix
11 lines
218 B
Nix
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
rustup
|
|
];
|
|
shellHook = ''
|
|
export PATH=$PATH:''${CARGO_HOME:-~/.cargo}/bin
|
|
'';
|
|
packages = (with pkgs; [
|
|
shellcheck
|
|
]);
|
|
}
|