mirror of
https://github.com/Noratrieb/advent-of-code.git
synced 2026-01-14 17:45:02 +01:00
day1
This commit is contained in:
commit
2cfee8a448
11 changed files with 240 additions and 0 deletions
11
shell.nix
Normal file
11
shell.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
rustup
|
||||
];
|
||||
shellHook = ''
|
||||
export PATH=$PATH:''${CARGO_HOME:-~/.cargo}/bin
|
||||
'';
|
||||
packages = (with pkgs; [
|
||||
shellcheck
|
||||
]);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue