3
0
Fork 0
forked from mirrors/nixpkgs

opusfile: enable on darwin

This commit is contained in:
Daiderd Jordan 2017-02-25 20:25:51 +01:00
parent 26a2822cf0
commit 5af221e6f3
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -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 ];
};
}