From 81982a5d992f42534b7d99bdaeaf4d7cfe5a3e86 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 30 Mar 2022 14:24:26 -0700 Subject: [PATCH] nix --- nix/devshell.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nix/devshell.nix b/nix/devshell.nix index 6a52ed515..97a3fa871 100644 --- a/nix/devshell.nix +++ b/nix/devshell.nix @@ -3,6 +3,7 @@ , gdb , pkg-config , scdoc +, vttest , zig , libGL @@ -15,12 +16,15 @@ pkg-config scdoc zig + + vttest ]; buildInputs = [ + # TODO: non-linux ] ++ lib.optionals stdenv.isLinux [ libX11 ]; - LD_LIBRARY_PATH="${libGL}/lib"; + LD_LIBRARY_PATH = "${libGL}/lib"; }