freedv: mark as broken on darwin

freedv doesn't build on darwin, due to missing dependencies. Building it
on darwin is an elaborate process, judging by it's `build_osx.sh`
script, that requires fetching some additional dependencies.
This commit is contained in:
Nikola Knezevic 2022-03-23 10:51:39 +01:00
parent 568a402fc4
commit 11d3d16afa

View File

@ -48,5 +48,6 @@ stdenv.mkDerivation rec {
license = licenses.lgpl21;
maintainers = with maintainers; [ mvs ];
platforms = platforms.unix;
broken = stdenv.isDarwin; # see https://github.com/NixOS/nixpkgs/issues/165422
};
}