rename devShells after subdirs

This commit is contained in:
rhiannon morris 2022-05-26 12:32:42 +02:00
parent bc9344c6ba
commit 4befbbeb42
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@
devShells =
let mkDevShell = _: pkg:
pkgs.mkShell { buildInputs = [ (builders.devEnv pkg) ]; };
shells = packages //
(with packages; { lib = quox-lib; test = quox-tests; });
shells = packages // (with packages;
{ exe = quox; lib = quox-lib; tests = quox-tests; });
in builtins.mapAttrs mkDevShell shells;
in {
inherit packages devShells;