Adding libopus

I still don't know any program that can use it.
This commit is contained in:
Lluís Batlle i Rossell 2012-09-25 20:01:29 +02:00
parent 839f124ba1
commit 664ee28936
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{ stdenv, fetchurl, fixedPoint ? false }:
stdenv.mkDerivation rec {
name = "libopus-1.0.1";
src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/opus-1.0.1.tar.gz";
sha256 = "1vs133z6c03xi1a7b8bkqxlb6ipwchawwb52z1lgvh1amwy5ryl0";
};
configureFlags = stdenv.lib.optionalString fixedPoint "--enable-fixed-point";
meta = {
description = "Open, royalty-free, highly versatile audio codec";
license = "BSD";
homepage = http://www.opus-codec.org/;
};
}

View File

@ -4270,6 +4270,8 @@ let
liboop = callPackage ../development/libraries/liboop { };
libopus = callPackage ../development/libraries/libopus { };
libosip = callPackage ../development/libraries/osip {};
libotr = callPackage ../development/libraries/libotr { };