a-robots-conundrum/shell.nix

7 lines
188 B
Nix
Raw Normal View History

2020-11-07 13:03:39 +01:00
# Use this file with nix-shell or similar tools; see https://nixos.org/
with import <nixpkgs> {};
mkShell {
buildInputs = [ (python27.withPackages (ps: with ps; [ pygame numpy ])) ];
}