mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-21 22:38:41 -06:00
update flake
This commit is contained in:
parent
1c6ef70121
commit
9216a5a2a8
13
flake.nix
13
flake.nix
|
@ -23,7 +23,7 @@
|
||||||
devShells.default = pkgs.mkShell.override {
|
devShells.default = pkgs.mkShell.override {
|
||||||
stdenv = pkgs.stdenvAdapters.useMoldLinker pkgs.clangStdenv;
|
stdenv = pkgs.stdenvAdapters.useMoldLinker pkgs.clangStdenv;
|
||||||
} rec {
|
} rec {
|
||||||
buildInputs = with pkgs; [
|
packages = with pkgs; [
|
||||||
(fenix.packages.${system}.complete.withComponents [
|
(fenix.packages.${system}.complete.withComponents [
|
||||||
"cargo"
|
"cargo"
|
||||||
"clippy"
|
"clippy"
|
||||||
|
@ -35,9 +35,10 @@
|
||||||
lldb
|
lldb
|
||||||
cmake
|
cmake
|
||||||
pkg-config
|
pkg-config
|
||||||
openssl
|
];
|
||||||
xorg.libxcb
|
buildInputs = with pkgs; [
|
||||||
libxkbcommon
|
libGL
|
||||||
|
glslang
|
||||||
vulkan-tools
|
vulkan-tools
|
||||||
vulkan-headers
|
vulkan-headers
|
||||||
vulkan-loader
|
vulkan-loader
|
||||||
|
@ -45,9 +46,11 @@
|
||||||
xorg.libXcursor
|
xorg.libXcursor
|
||||||
xorg.libXi
|
xorg.libXi
|
||||||
xorg.libXrandr
|
xorg.libXrandr
|
||||||
|
xorg.libxcb
|
||||||
|
libxkbcommon
|
||||||
wayland
|
wayland
|
||||||
glslang
|
|
||||||
udev
|
udev
|
||||||
|
openssl
|
||||||
];
|
];
|
||||||
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
|
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
|
||||||
RUSTFLAGS = "-Zthreads=8";
|
RUSTFLAGS = "-Zthreads=8";
|
||||||
|
|
Loading…
Reference in a new issue