Support Nix.

This commit is contained in:
Niels G. W. Serup 2020-08-20 23:33:49 +02:00
parent 636388dbe6
commit 21e4b12672
1 changed files with 5 additions and 0 deletions

5
default.nix Normal file
View File

@ -0,0 +1,5 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "a-robots-conundrum";
buildInputs = [ (python27.withPackages (ps: with ps; [ pygame numpy ])) ];
}