Files
canvas-grades/shell.nix
2026-05-17 20:15:09 +03:00

15 lines
208 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
rustup
pkg-config
openssl
];
shellHook = ''
rustup toolchain install stable
rustup default stable
'';
}