summary refs log blame commit diff
path: root/pkgs/development/libraries/libopus/default.nix
blob: 78b264506f01e02a66c874b51770681dbc956603 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                  
 


                  
                         

                              
                  

                                                                           

    

                                                                               
 

                 





                                                                     
{ stdenv, fetchurl, fixedPoint ? false, withCustomModes ? false }:

let
  version = "1.1";
in
stdenv.mkDerivation rec {
  name = "libopus-${version}";

  src = fetchurl {
    url = "http://downloads.xiph.org/releases/opus/opus-${version}.tar.gz";
    sha256 = "158xprn2086arvdib3vbbygz7z6jqkw2nci7nlywzzwallap0wmr";
  };

  configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point"
                ++ stdenv.lib.optional withCustomModes "--enable-custom-modes";

  doCheck = true;

  meta = {
    description = "Open, royalty-free, highly versatile audio codec";
    license = "BSD";
    homepage = http://www.opus-codec.org/;
  };
}