at master 386 B view raw
1let 2 pkgs = import ../../../. { }; 3 inherit (pkgs) mkShellNoCC sbcl nixfmt-rfc-style; 4in 5mkShellNoCC { 6 packages = [ 7 nixfmt-rfc-style 8 (sbcl.withPackages ( 9 ps: 10 builtins.attrValues { 11 inherit (ps) 12 alexandria 13 str 14 dexador 15 cl-ppcre 16 sqlite 17 arrow-macros 18 jzon 19 ; 20 } 21 )) 22 ]; 23}