liblc3: widen supported platforms
This commit is contained in:
parent
6162a4e3f9
commit
2b61331fc1
1 changed files with 4 additions and 1 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue