about summary refs log tree commit diff
path: root/shell.nix
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2022-09-14 17:16:46 +0200
committerBaitinq <[email protected]>2022-09-14 17:16:46 +0200
commitc8b497050304f121ca2c7cb2d6532dde3c07094a (patch)
tree4e6601545c78d938444ea774629c35dc68cb5bd3 /shell.nix
parentAdded physics speedup option (diff)
downloadOSLS-c8b497050304f121ca2c7cb2d6532dde3c07094a.tar.gz
OSLS-c8b497050304f121ca2c7cb2d6532dde3c07094a.tar.bz2
OSLS-c8b497050304f121ca2c7cb2d6532dde3c07094a.zip
Add nix tooling
Diffstat (limited to '')
-rw-r--r--shell.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..3bae8d4
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,9 @@
+{ pkgs ? import <nixpkgs> { } }:
+pkgs.mkShell {
+  nativeBuildInputs = with pkgs; [
+    python3
+    python3Packages.numpy
+    python3Packages.pygame
+    python3Packages.matplotlib
+  ];
+}