Skip to content

Commit

Permalink
nix: Fix shell expression
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <nick@nickspinale.com>
  • Loading branch information
nspin committed Jun 26, 2024
1 parent 35b1c5e commit afa7a3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hacking/nix/scope/world/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ let
};

capdlEnvVars = lib.optionalAttrs (!worldConfig.isMicrokit) {
CAPDL_SPEC_FILE = serializeCapDLSpec { inherit (dummyCapDLSpec.passthru) spec; };
CAPDL_FILL_DIR = dummyCapDLSpec.passthru.fill;
CAPDL_SPEC_FILE = serializeCapDLSpec { inherit (dummyCapDLSpec) cdl; };
CAPDL_FILL_DIR = dummyCapDLSpec.fill;
};

libcDir = "${stdenv.cc.libc}/${hostPlatform.config}";
Expand Down

0 comments on commit afa7a3d

Please sign in to comment.