heyarne.all-my-friends.vis/shell.nix

8 lines
176 B
Nix

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