diff --git a/shell.nix b/shell.nix index de6315c..95fc359 100644 --- a/shell.nix +++ b/shell.nix @@ -1,15 +1,15 @@ -{ pkgs ? import { } }: - +{pkgs ? import {}}: with pkgs; - -mkShell rec { - packages = [gdb clang-tools]; - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ - gcc - gnumake - glfw3 - glm - ]; - LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs; -} + mkShell rec { + packages = [gdb clang-tools]; + nativeBuildInputs = [ + pkg-config + gcc + gnumake + ]; + buildInputs = [ + glfw3 + glm + ]; + LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs; + }