Skip to content

Commit

Permalink
dtc: disable checks for darwin
Browse files Browse the repository at this point in the history
The tests fail on darwin aarch64.

NixOS#118700 (comment)

Reported-by: Jiuyang Liu (sequencer)
  • Loading branch information
tnias committed Jul 24, 2021
1 parent 688f621 commit 8e8f611
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/compilers/dtc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ stdenv.mkDerivation rec {
makeFlags = [ "PYTHON=python" ];
installFlags = [ "INSTALL=install" "PREFIX=$(out)" "SETUP_PREFIX=$(out)" ];

doCheck = true;
# Checks are broken on aarch64 darwin
# https://github.com/NixOS/nixpkgs/pull/118700#issuecomment-885892436
doCheck = !stdenv.isDarwin;

meta = with lib; {
description = "Device Tree Compiler";
Expand Down

0 comments on commit 8e8f611

Please sign in to comment.