Files
nixpkgs/pkgs/development/lisp-modules/shell.nix
Kasper Gałkowski 7992efedf0 lisp-modules: add nixfmt step
Recently the imported.nix file was re-formatted using nixfmt. Adding that step
to the QL import script, to keep up the spirit. Keeps diffs smaller.
2025-07-13 21:40:07 +02:00

24 lines
386 B
Nix

let
pkgs = import ../../../. { };
inherit (pkgs) mkShellNoCC sbcl nixfmt-rfc-style;
in
mkShellNoCC {
packages = [
nixfmt-rfc-style
(sbcl.withPackages (
ps:
builtins.attrValues {
inherit (ps)
alexandria
str
dexador
cl-ppcre
sqlite
arrow-macros
jzon
;
}
))
];
}