mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-21 06:18:41 -06:00
fix flake
This commit is contained in:
parent
ced9705910
commit
7a375cf3c0
17
flake.nix
17
flake.nix
|
@ -25,7 +25,7 @@
|
|||
pkgs.stdenvAdapters.useMoldLinker pkgs.clangStdenv
|
||||
else
|
||||
pkgs.clangStdenv;
|
||||
} rec {
|
||||
} {
|
||||
packages = with pkgs; [
|
||||
(fenix.packages.${system}.complete.withComponents [
|
||||
"cargo"
|
||||
|
@ -56,7 +56,20 @@
|
|||
udev
|
||||
openssl
|
||||
];
|
||||
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
|
||||
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; [
|
||||
libGL
|
||||
glslang
|
||||
vulkan-tools
|
||||
vulkan-headers
|
||||
vulkan-loader
|
||||
wayland
|
||||
xorg.libX11
|
||||
xorg.libXcursor
|
||||
xorg.libXi
|
||||
xorg.libXrandr
|
||||
xorg.libxcb
|
||||
libxkbcommon
|
||||
]);
|
||||
RUSTFLAGS = "-Zthreads=8";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue