memorymapping: constrain to darwin (fails on linux) (#138404)

Closes: https://github.com/NixOS/nixpkgs/issues/138378
This commit is contained in:
Sergei Trofimovich 2021-09-18 19:03:00 +00:00 committed by GitHub
parent 3e704ed55b
commit b098f6ff0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
};
}