memorymapping: constrain to darwin (fails on linux) (#138404)
Closes: https://github.com/NixOS/nixpkgs/issues/138378
This commit is contained in:
parent
3e704ed55b
commit
b098f6ff0d
1 changed files with 3 additions and 1 deletions
|
@ -37,7 +37,9 @@ stdenv.mkDerivation {
|
||||||
description = "fmemopen for Mac OS and iOS";
|
description = "fmemopen for Mac OS and iOS";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ veprbl ];
|
maintainers = with maintainers; [ veprbl ];
|
||||||
platforms = platforms.unix;
|
# Uses BSD-style funopen() to implement glibc-style fmemopen().
|
||||||
|
# Add more BSDs if you need to.
|
||||||
|
platforms = platforms.darwin;
|
||||||
broken = stdenv.isAarch64;
|
broken = stdenv.isAarch64;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue