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

                                


                                                                        
                         
                          
 

                                                                       
                                                                    
    
 

                                  

                                                        












                                                                                     
                                                

    
{ stdenv, fetchurl, pkgconfig
, libvorbis, libtheora, speex }:

# need pkgconfig so that libshout installs ${out}/lib/pkgconfig/shout.pc

stdenv.mkDerivation rec {
  name = "libshout-2.4.3";

  src = fetchurl {
    url = "http://downloads.xiph.org/releases/libshout/${name}.tar.gz";
    sha256 = "1zhdshas539cs8fsz8022ljxnnncr5lafhfd1dqr1gs125fzb2hd";
  };

  outputs = [ "out" "dev" "doc" ];

  nativeBuildInputs = [ pkgconfig ];
  propagatedBuildInputs = [ libvorbis libtheora speex ];

  meta = {
    description = "icecast 'c' language bindings";

    longDescription = ''
      Libshout is a library for communicating with and sending data to an icecast
      server.  It handles the socket connection, the timing of the data, and prevents
      bad data from getting to the icecast server.
    '';

    homepage = http://www.icecast.org;
    license = stdenv.lib.licenses.gpl2;
    maintainers = with stdenv.lib.maintainers; [ jcumming ];
    platforms = with stdenv.lib.platforms; unix;
  };
}