mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-21 14:28:43 -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
|
pkgs.stdenvAdapters.useMoldLinker pkgs.clangStdenv
|
||||||
else
|
else
|
||||||
pkgs.clangStdenv;
|
pkgs.clangStdenv;
|
||||||
} rec {
|
} {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
(fenix.packages.${system}.complete.withComponents [
|
(fenix.packages.${system}.complete.withComponents [
|
||||||
"cargo"
|
"cargo"
|
||||||
|
@ -56,7 +56,20 @@
|
||||||
udev
|
udev
|
||||||
openssl
|
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";
|
RUSTFLAGS = "-Zthreads=8";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue