1
0
Fork 0
This repository has been archived on 2025-03-30. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
compiler-course/shell.nix

16 lines
190 B
Nix
Raw Normal View History

2025-01-15 15:02:16 +02:00
let
nixpkgs = <nixpkgs>;
pkgs = import nixpkgs {
config = { };
overlays = [ ];
};
in
pkgs.mkShell {
packages = with pkgs; [
cargo
rustc
rustfmt
clippy
];
}