Skip to content

Commit

Permalink
linux_dependencies: fix NixOS (bevyengine#5251)
Browse files Browse the repository at this point in the history
I forgot a rec... (and I removed the redundant file name).

# Objective

- Fix the whoopsie from bevyengine#5086.
  • Loading branch information
SuperSamus committed Jul 8, 2022
1 parent 47f1944 commit 4c35ecf
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions docs/linux_dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <nixpkgs> {} }:
with pkgs; mkShell {
with pkgs; mkShell rec {
nativeBuildInputs = [
pkgconfig
llvmPackages.bintools # To use lld linker
Expand Down

0 comments on commit 4c35ecf

Please sign in to comment.