liblc3: widen supported platforms

This commit is contained in:
Lily Foster 2024-04-14 21:29:51 -04:00
parent 6162a4e3f9
commit 2b61331fc1
No known key found for this signature in database
GPG key ID: 49340081E484C893

View file

@ -27,11 +27,14 @@ stdenv.mkDerivation {
ninja
];
# LTO does not work on Darwin: https://github.com/NixOS/nixpkgs/issues/19098
mesonFlags = lib.optionals stdenv.isDarwin [ "-Db_lto=false" ];
meta = with lib; {
description = "LC3 (Low Complexity Communication Codec) is an efficient low latency audio codec";
homepage = "https://github.com/google/liblc3";
license = licenses.asl20;
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = with maintainers; [ jansol ];
};
}