From 21e4b12672a6f9e163fb0669c61221512181b53b Mon Sep 17 00:00:00 2001 From: "Niels G. W. Serup" Date: Thu, 20 Aug 2020 23:33:49 +0200 Subject: [PATCH] Support Nix. --- default.nix | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 default.nix diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..a23204c --- /dev/null +++ b/default.nix @@ -0,0 +1,5 @@ +with import {}; +stdenv.mkDerivation { + name = "a-robots-conundrum"; + buildInputs = [ (python27.withPackages (ps: with ps; [ pygame numpy ])) ]; +}