project_reversi/shell.nix

8 lines
118 B
Nix

with (import <nixpkgs> {});
mkShell {
buildInputs = [
# Defines a python + set of packages.
python3
];
}