Initial commit w/ rudimentary visualization

This commit is contained in:
heyarne 2021-04-11 10:51:10 +02:00
commit 9abd736f13
5 changed files with 162 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
with import <nixpkgs> { };
mkShell rec {
name = "quil-env";
buildInputs = with pkgs; [
xorg_sys_opengl
];
LD_LIBRARY_PATH = "${lib.makeLibraryPath buildInputs}";
}