···16 meta = with lib; {
17 description = "C++ Minimal interface to encode and decode audio with AMBE3000 based devices in packet mode over a serial link";
18 homepage = "https://github.com/f4exb/serialdv";
19- platforms = platforms.linux;
20 maintainers = with maintainers; [ alkeryn ];
21 license = licenses.gpl3;
22 };
···16 meta = with lib; {
17 description = "C++ Minimal interface to encode and decode audio with AMBE3000 based devices in packet mode over a serial link";
18 homepage = "https://github.com/f4exb/serialdv";
19+ platforms = platforms.unix;
20 maintainers = with maintainers; [ alkeryn ];
21 license = licenses.gpl3;
22 };
···4let
5 inherit (lib.strings) escapeNixIdentifier;
67- allTests = lib.mapAttrs (k: v: if v == null then null else makePkgConfigTestMaybe k v) defaultPkgConfigPackages;
089 # nix-build rejects attribute names with periods
10 # This will build those regardless.
···4let
5 inherit (lib.strings) escapeNixIdentifier;
67+ allTests = lib.mapAttrs (k: v: if v == null then null else makePkgConfigTestMaybe k v)
8+ (builtins.removeAttrs defaultPkgConfigPackages ["recurseForDerivations"]);
910 # nix-build rejects attribute names with periods
11 # This will build those regardless.