a-robots-conundrum/default.nix

6 lines
162 B
Nix
Raw Normal View History

2020-08-20 23:33:49 +02:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "a-robots-conundrum";
buildInputs = [ (python27.withPackages (ps: with ps; [ pygame numpy ])) ];
}