1

Don't use devshell in flake for it breaks pkg-config

This commit is contained in:
2024-10-05 15:40:34 +02:00
parent 10ea59059e
commit 3469aae86e
2 changed files with 10 additions and 65 deletions

View File

@ -3,14 +3,12 @@
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.devshell.url = "github:numtide/devshell";
inputs.rust-overlay.url = "github:oxalica/rust-overlay";
outputs = {
self,
nixpkgs,
flake-utils,
devshell,
rust-overlay,
}:
flake-utils.lib.eachDefaultSystem (system: let
@ -18,7 +16,6 @@
inherit system;
config.allowUnfree = true; # For clion
overlays = [
devshell.overlays.default
rust-overlay.overlays.default
];
};
@ -28,16 +25,19 @@
extensions = ["rust-src"]; # Include the rust stdlib source for intellij
};
in {
devShell = pkgs.devshell.mkShell rec {
devShell = pkgs.mkShell rec {
name = "Rust Environment";
packages = with pkgs; [
nativeBuildInputs = with pkgs; [
gcc14
rust-stable
# rust-analyzer # System install
# Bevy Dependencies: https://github.com/bevyengine/bevy/blob/release-0.14.2/docs/linux_dependencies.md#nix
pkg-config
];
buildInputs = with pkgs; [
udev
alsa-lib
vulkan-loader
@ -45,28 +45,8 @@
wayland
];
env = [
# Allow for intellij to find the stdlib
{
name = "RUST_SRC_PATH";
value = "${rust-stable}/lib/rustlib/src/rust/library";
}
# Use this if the rust binary needs additional libraries
{
name = "LD_LIBRARY_PATH";
value = nixpkgs.lib.makeLibraryPath packages;
# value = "${pkgs.xorg.libX11}/lib:${pkgs.xorg.libXcursor}/lib:${pkgs.xorg.libXrandr}/lib:${pkgs.xorg.libXi}/lib:${pkgs.libGL}/lib";
}
];
commands = [
# {
# name = "ide";
# help = "Run clion for project";
# command = "clion &>/dev/null ./ &";
# }
];
RUST_SRC_PATH = "${rust-stable}/lib/rustlib/src/rust/library";
LD_LIBRARY_PATH = nixpkgs.lib.makeLibraryPath buildInputs;
};
});
}