Make the outpaths.nix more robust since nixpkgs' metat-check PRs has merged
This commit is contained in:
parent
7411524ed3
commit
ce6d968cb5
1 changed files with 6 additions and 7 deletions
|
@ -5,24 +5,23 @@ let
|
||||||
# Compromise: accuracy vs. resources needed for evaluation.
|
# Compromise: accuracy vs. resources needed for evaluation.
|
||||||
{
|
{
|
||||||
supportedSystems = [
|
supportedSystems = [
|
||||||
# Not ready to evaluate these archs, see #32365
|
"aarch64-linux"
|
||||||
# "aarch64-linux"
|
"i686-linux"
|
||||||
# "i686-linux"
|
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
"x86_64-darwin"
|
"x86_64-darwin"
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgsArgs = {
|
nixpkgsArgs = {
|
||||||
config = {
|
config = {
|
||||||
allowBroken = true;
|
allowBroken = true;
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
allowInsecurePredicate = x: true;
|
allowInsecurePredicate = x: true;
|
||||||
checkMeta = false; # checkMeta; see #32365
|
checkMeta = checkMeta;
|
||||||
|
|
||||||
# See https://github.com/NixOS/nixpkgs/pull/32365
|
|
||||||
handleEvalIssue = reason: errormsg:
|
handleEvalIssue = reason: errormsg:
|
||||||
if reason == "unknown-meta"
|
if reason == "unknown-meta"
|
||||||
then (builtins.trace (abort errormsg) true)
|
then builtins.trace errormsg true
|
||||||
else (builtins.trace errormsg true);
|
else true;
|
||||||
|
|
||||||
inHydra = true;
|
inHydra = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue