0. environment

0. environment

Ayano Kagurazaka Lv3

We will use nix to manage the shell environment. The shell.nix file:

1
2
3
4
5
6
7
8
9
10
11
12
let
pkgs = import <nixpkgs> { };
in
pkgs.mkShell {
buildInputs = with pkgs; [
trunk
cargo
rustup
];

LIBRARY_PATH = builtins.getEnv "LIBRARY_PATH" + ":/opt/homebrew/lib:/opt/homebrew/opt/libiconv/lib";
}
Comments
On this page
0. environment