advent-of-code-2021/shell.nix
2021-12-02 11:33:23 +01:00

8 lines
104 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.rustup
pkgs.scala
];
}