diff --git a/default.nix b/default.nix deleted file mode 100644 index a23204c..0000000 --- a/default.nix +++ /dev/null @@ -1,5 +0,0 @@ -with import {}; -stdenv.mkDerivation { - name = "a-robots-conundrum"; - buildInputs = [ (python27.withPackages (ps: with ps; [ pygame numpy ])) ]; -} diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..8aa222d --- /dev/null +++ b/shell.nix @@ -0,0 +1,6 @@ +# Use this file with nix-shell or similar tools; see https://nixos.org/ +with import {}; + +mkShell { + buildInputs = [ (python27.withPackages (ps: with ps; [ pygame numpy ])) ]; +}