mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #23185 from LnL7/darwin-opusfile
opusfile: enable on darwin
This commit is contained in:
commit
3f45bb2d97
1 changed files with 4 additions and 4 deletions
|
@ -13,11 +13,11 @@ stdenv.mkDerivation rec {
|
|||
patches = [ ./include-multistream.patch ];
|
||||
configureFlags = [ "--disable-examples" ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "High-level API for decoding and seeking in .opus files";
|
||||
homepage = http://www.opus-codec.org/;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
maintainers = with maintainers; [ fuuzetsu ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue