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

9 lines
188 B
Nix

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