ghostty/nix/build-support/ld-library-path.nix
Jeffrey C. Ollie 648e0a06ab CI: Add checks for blueprint compiler / Nix refactors
1. Refactored Nix devshell/package to make it easier to keep
   LD_LIBRARY_PATH & buildInputs in sync (plus make it easier to re-use
   in other Nix environment).
2. Added a CI job to ensure that Blueprints are formatted correctly and
   that they will compile using `blueprint-compiler` 0.16.0.
3. Reformatted all Blueprints with `blueprint-compiler format`.
2025-03-18 16:12:49 -05:00

11 lines
177 B
Nix

{
pkgs,
lib,
stdenv,
enableX11 ? true,
enableWayland ? true,
}:
lib.makeLibraryPath (import ./build-inputs.nix {
inherit pkgs lib stdenv enableX11 enableWayland;
})