include correct rust install in nix-shell
This commit is contained in:
parent
834a864544
commit
f63a7ae86a
|
@ -1,5 +1,4 @@
|
|||
[toolchain]
|
||||
channel = "nightly-2023-11-21"
|
||||
#components = [ "rustfmt", "rustc-dev" ]
|
||||
channel = "nightly"
|
||||
date = "2023-11-21"
|
||||
targets = [ "x86_64-unknown-linux-gnu" ]
|
||||
#profile = "minimal"
|
16
shell.nix
16
shell.nix
|
@ -1,8 +1,10 @@
|
|||
{ pkgs ? import <nixpkgs> { } }:
|
||||
|
||||
with pkgs;
|
||||
|
||||
mkShell rec {
|
||||
let
|
||||
moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
|
||||
nixpkgs = import <nixpkgs> { overlays = [ moz_overlay ]; };
|
||||
in
|
||||
with nixpkgs;
|
||||
stdenv.mkDerivation rec {
|
||||
name = "lyra_engine_dev";
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
openssl
|
||||
|
@ -13,7 +15,7 @@ mkShell rec {
|
|||
mold
|
||||
udev
|
||||
lua5_4_compat
|
||||
rustup
|
||||
(nixpkgs.rustChannelOf { rustToolchain = ./rust-toolchain.toml; }).rust
|
||||
];
|
||||
buildInputs = [
|
||||
udev alsa-lib libGL gcc
|
||||
|
@ -22,4 +24,4 @@ mkShell rec {
|
|||
libxkbcommon wayland # To use the wayland feature
|
||||
];
|
||||
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue