mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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";
|
||||
license = licenses.asl20;
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue