From 4c35ecf71f2f254acab1d785f5b0f1d7cc7fd578 Mon Sep 17 00:00:00 2001 From: SuperSamus <40663462+SuperSamus@users.noreply.github.com> Date: Fri, 8 Jul 2022 17:14:34 +0000 Subject: [PATCH] linux_dependencies: fix NixOS (#5251) I forgot a rec... (and I removed the redundant file name). # Objective - Fix the whoopsie from #5086. --- docs/linux_dependencies.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/linux_dependencies.md b/docs/linux_dependencies.md index a63bddc3fb..f49f4d1ac3 100644 --- a/docs/linux_dependencies.md +++ b/docs/linux_dependencies.md @@ -74,10 +74,8 @@ sudo xbps-install -S pkgconf alsa-lib-devel libX11-devel eudev-libudev-devel Add a `shell.nix` file to the root of the project containing: ```nix -# shell.nix - { pkgs ? import {} }: -with pkgs; mkShell { +with pkgs; mkShell rec { nativeBuildInputs = [ pkgconfig llvmPackages.bintools # To use lld linker