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




                           
  
                  
                                                                     
                                                                    
    
 

                              
                                     
 


                           
                                       


                                        
    
 
{ stdenv, fetchurl, libogg, pkgconfig }:

let
  name = "libvorbis-1.3.4";
in
stdenv.mkDerivation {
  inherit name;
  
  src = fetchurl {
    url = "http://downloads.xiph.org/releases/vorbis/${name}.tar.xz";
    sha256 = "0wpk87jnhngcl3nc5i39flkycx1sjzilx8jjx4zc4p8r55ylj19g";
  };

  buildInputs = [ pkgconfig ];

  propagatedBuildInputs = [ libogg ];

  doCheck = true;

  meta = with stdenv.lib; {
    homepage = http://xiph.org/vorbis/;
    license = licenses.bsd3;
    maintainers = [ maintainers.emery ];
    platforms = platforms.all;
  };
}