mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 04:33:37 +00:00
linux_dependencies: fix NixOS (#5251)
I forgot a rec... (and I removed the redundant file name). # Objective - Fix the whoopsie from #5086.
This commit is contained in:
parent
47f1944959
commit
4c35ecf71f
1 changed files with 1 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue