forked from mirrors/nixpkgs
opusfile: enable on darwin
This commit is contained in:
parent
26a2822cf0
commit
5af221e6f3
|
@ -13,11 +13,11 @@ stdenv.mkDerivation rec {
|
||||||
patches = [ ./include-multistream.patch ];
|
patches = [ ./include-multistream.patch ];
|
||||||
configureFlags = [ "--disable-examples" ];
|
configureFlags = [ "--disable-examples" ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "High-level API for decoding and seeking in .opus files";
|
description = "High-level API for decoding and seeking in .opus files";
|
||||||
homepage = http://www.opus-codec.org/;
|
homepage = http://www.opus-codec.org/;
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
maintainers = with maintainers; [ fuuzetsu ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue