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 = devShells =
let mkDevShell = _: pkg: let mkDevShell = _: pkg:
pkgs.mkShell { buildInputs = [ (builders.devEnv pkg) ]; }; pkgs.mkShell { buildInputs = [ (builders.devEnv pkg) ]; };
shells = packages // shells = packages // (with packages;
(with packages; { lib = quox-lib; test = quox-tests; }); { exe = quox; lib = quox-lib; tests = quox-tests; });
in builtins.mapAttrs mkDevShell shells; in builtins.mapAttrs mkDevShell shells;
in { in {
inherit packages devShells; inherit packages devShells;