From c639afe08b704094ae3325e1f7750791d1ff1abe Mon Sep 17 00:00:00 2001 From: k Date: Tue, 7 Jan 2025 17:09:00 -0500 Subject: [PATCH] formated shell.nix --- shell.nix | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) 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; + }