fixed rss order

This commit is contained in:
Rakarake 2026-04-05 21:19:40 +02:00
parent 0beaa152b4
commit 36c3967170
3 changed files with 27 additions and 118 deletions

View file

@ -5,10 +5,9 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; # or whatever vers
flake-utils.url = "github:numtide/flake-utils";
rust-overlay.url = "github:oxalica/rust-overlay";
zig-overlay.url = "github:mitchellh/zig-overlay";
};
outputs = { self, nixpkgs, flake-utils, rust-overlay, zig-overlay, ... }:
outputs = { nixpkgs, flake-utils, rust-overlay, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
overlays = [ (import rust-overlay) ];
@ -17,35 +16,13 @@
};
in
{
devShell = pkgs.mkShell rec {
LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath buildInputs}";
devShell = pkgs.mkShell {
packages = with pkgs; [
rustc
cargo
rust-analyzer
gcc
zig-overlay.packages."x86_64-linux".master
curl
];
buildInputs = with pkgs; [
libdisplay-info
libgbm
#mesa
libinput
pixman
seatd
udev
libxkbcommon
wayland
wayland.dev
wayland-protocols
libGL
vulkan-headers vulkan-loader
vulkan-tools vulkan-tools-lunarg
vulkan-extension-layer
vulkan-validation-layers # don't need them *strictly* but immensely helpful
#libglvnd
];
};
}
);