Skip to content

Commit

Permalink
main builder error handling improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
birdee committed Nov 12, 2024
1 parent a912409 commit d6dbf1c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions builder/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ let
else (nixpkgs.config or {}) // extra_pkg_config;
overlays = if isList dependencyOverlays
then dependencyOverlays
else dependencyOverlays.${system} or
(if isNull dependencyOverlays then []
else import ./builder_error.nix);
else dependencyOverlays.${system} or [];
in if isAttrs nixCats_passthru && isFunction categoryDefinitions
&& isAttrs packageDefinitions && isString name
then import (nixpkgs.path or nixpkgs.outPath or nixpkgs)
Expand Down

0 comments on commit d6dbf1c

Please sign in to comment.