mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03: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
@ -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 New Issue
Block a user