diff options
| author | Baitinq <[email protected]> | 2022-09-14 17:16:46 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-09-14 17:16:46 +0200 |
| commit | c8b497050304f121ca2c7cb2d6532dde3c07094a (patch) | |
| tree | 4e6601545c78d938444ea774629c35dc68cb5bd3 /shell.nix | |
| parent | Added physics speedup option (diff) | |
| download | OSLS-c8b497050304f121ca2c7cb2d6532dde3c07094a.tar.gz OSLS-c8b497050304f121ca2c7cb2d6532dde3c07094a.tar.bz2 OSLS-c8b497050304f121ca2c7cb2d6532dde3c07094a.zip | |
Add nix tooling
Diffstat (limited to '')
| -rw-r--r-- | shell.nix | 9 |
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 + ]; +} |