Use Alejandra to format Nix modules.

This commit is contained in:
Jeffrey C. Ollie
2023-12-12 11:38:39 -06:00
parent 2f9750ad7f
commit c4ed1f1b80
7 changed files with 322 additions and 276 deletions

View File

@@ -1,139 +1,145 @@
{
mkShell
, lib
, stdenv
, bashInteractive
, gdb
#, glxinfo # unused
, ncurses
, nodejs
, nodePackages
, oniguruma
, parallel
, pkg-config
, python3
, scdoc
, tracy
, valgrind
#, vulkan-loader # unused
, vttest
, wabt
, wasmtime
, wraptest
, zig
, zip
, zls
, llvmPackages_latest
, bzip2
, expat
, fontconfig
, freetype
, glib
, gtk4
, libadwaita
, harfbuzz
, libpng
, libGL
, libX11
, libXcursor
, libXext
, libXi
, libXinerama
, libXrandr
, pixman
, zlib
}:
let
mkShell,
lib,
stdenv,
bashInteractive,
gdb,
#, glxinfo # unused
ncurses,
nodejs,
nodePackages,
oniguruma,
parallel,
pkg-config,
python3,
scdoc,
tracy,
valgrind,
#, vulkan-loader # unused
vttest,
wabt,
wasmtime,
wraptest,
zig,
zip,
zls,
llvmPackages_latest,
bzip2,
expat,
fontconfig,
freetype,
glib,
gtk4,
libadwaita,
harfbuzz,
libpng,
libGL,
libX11,
libXcursor,
libXext,
libXi,
libXinerama,
libXrandr,
pixman,
zlib,
alejandra,
}: let
# See package.nix. Keep in sync.
rpathLibs = [
libGL
] ++ lib.optionals stdenv.isLinux [
bzip2
expat
fontconfig
freetype
harfbuzz
libpng
oniguruma
pixman
zlib
rpathLibs =
[
libGL
]
++ lib.optionals stdenv.isLinux [
bzip2
expat
fontconfig
freetype
harfbuzz
libpng
oniguruma
pixman
zlib
libX11
libXcursor
libXi
libXrandr
libX11
libXcursor
libXi
libXrandr
libadwaita
gtk4
glib
];
in mkShell {
name = "ghostty";
libadwaita
gtk4
glib
];
in
mkShell {
name = "ghostty";
nativeBuildInputs = [
# For builds
llvmPackages_latest.llvm
ncurses
pkg-config
scdoc
zig
zip
zls
nativeBuildInputs =
[
# For builds
llvmPackages_latest.llvm
ncurses
pkg-config
scdoc
zig
zip
zls
# For web and wasm stuff
nodejs
# For web and wasm stuff
nodejs
# Linting
nodePackages.prettier
# Linting
nodePackages.prettier
alejandra
# Testing
parallel
python3
tracy
vttest
# Testing
parallel
python3
tracy
vttest
# wasm
wabt
wasmtime
] ++ lib.optionals stdenv.isLinux [
# My nix shell environment installs the non-interactive version
# by default so we have to include this.
bashInteractive
# wasm
wabt
wasmtime
]
++ lib.optionals stdenv.isLinux [
# My nix shell environment installs the non-interactive version
# by default so we have to include this.
bashInteractive
gdb
valgrind
wraptest
];
gdb
valgrind
wraptest
];
buildInputs = [
# TODO: non-linux
] ++ lib.optionals stdenv.isLinux [
bzip2
expat
fontconfig
freetype
harfbuzz
libpng
oniguruma
pixman
zlib
buildInputs =
[
# TODO: non-linux
]
++ lib.optionals stdenv.isLinux [
bzip2
expat
fontconfig
freetype
harfbuzz
libpng
oniguruma
pixman
zlib
libX11
libXcursor
libXext
libXi
libXinerama
libXrandr
libX11
libXcursor
libXext
libXi
libXinerama
libXrandr
# Only needed for GTK builds
libadwaita
gtk4
glib
];
# Only needed for GTK builds
libadwaita
gtk4
glib
];
# This should be set onto the rpath of the ghostty binary if you want
# it to be "portable" across the system.
LD_LIBRARY_PATH = lib.makeLibraryPath rpathLibs;
}
# This should be set onto the rpath of the ghostty binary if you want
# it to be "portable" across the system.
LD_LIBRARY_PATH = lib.makeLibraryPath rpathLibs;
}