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.
24 lines
386 B
Nix
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
|
|
;
|
|
}
|
|
))
|
|
];
|
|
}
|