mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #275534 from laozc/girara
girara: disable meson tests target on Darwin
This commit is contained in:
commit
3755ffd1ff
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
mesonFlags = [
|
||||
"-Ddocs=disabled" # docs do not seem to be installed
|
||||
(lib.mesonEnable "tests" (stdenv.buildPlatform.canExecute stdenv.hostPlatform))
|
||||
(lib.mesonEnable "tests" ((stdenv.buildPlatform.canExecute stdenv.hostPlatform) && (!stdenv.isDarwin)))
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
|
|
Loading…
Reference in a new issue