···1616 meta = with lib; {
1717 description = "C++ Minimal interface to encode and decode audio with AMBE3000 based devices in packet mode over a serial link";
1818 homepage = "https://github.com/f4exb/serialdv";
1919- platforms = platforms.linux;
1919+ platforms = platforms.unix;
2020 maintainers = with maintainers; [ alkeryn ];
2121 license = licenses.gpl3;
2222 };
···44let
55 inherit (lib.strings) escapeNixIdentifier;
6677- allTests = lib.mapAttrs (k: v: if v == null then null else makePkgConfigTestMaybe k v) defaultPkgConfigPackages;
77+ allTests = lib.mapAttrs (k: v: if v == null then null else makePkgConfigTestMaybe k v)
88+ (builtins.removeAttrs defaultPkgConfigPackages ["recurseForDerivations"]);
89910 # nix-build rejects attribute names with periods
1011 # This will build those regardless.