lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at release-16.03-start 31 lines 930 B view raw
1{ stdenv, fetchurl, pkgconfig 2, libvorbis, libtheora, speex }: 3 4# need pkgconfig so that libshout installs ${out}/lib/pkgconfig/shout.pc 5 6stdenv.mkDerivation rec { 7 name = "libshout-2.3.1"; 8 9 src = fetchurl { 10 url = "http://downloads.xiph.org/releases/libshout/${name}.tar.gz"; 11 sha256 = "cf3c5f6b4a5e3fcfbe09fb7024aa88ad4099a9945f7cb037ec06bcee7a23926e"; 12 }; 13 14 nativeBuildInputs = [ pkgconfig ]; 15 propagatedBuildInputs = [ libvorbis libtheora speex ]; 16 17 meta = { 18 description = "icecast 'c' language bindings"; 19 20 longDescription = '' 21 Libshout is a library for communicating with and sending data to an icecast 22 server. It handles the socket connection, the timing of the data, and prevents 23 bad data from getting to the icecast server. 24 ''; 25 26 homepage = http://www.icecast.org; 27 license = stdenv.lib.licenses.gpl2; 28 maintainers = with stdenv.lib.maintainers; [ jcumming ]; 29 30 }; 31}