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

                    
 
                  
                                                                        
                                                                    

    
                            
 

                                                                               
 

                 
                           
                                                                     
                                       
                                          
                               

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

let
  version = "1.3.1";
in
stdenv.mkDerivation {
  pname = "libopus";
  inherit version;

  src = fetchurl {
    url = "https://archive.mozilla.org/pub/opus/opus-${version}.tar.gz";
    sha256 = "17gz8kxs4i7icsc1gj713gadiapyklynlwqlf0ai98dj4lg8xdb5";
  };

  outputs = [ "out" "dev" ];

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

  doCheck = true;

  meta = with stdenv.lib; {
    description = "Open, royalty-free, highly versatile audio codec";
    license = stdenv.lib.licenses.bsd3;
    homepage = http://www.opus-codec.org/;
    platforms = platforms.unix;
  };
}