icecast: update 2.3.3 to 2.4.0

now with opus support
This commit is contained in:
Emery Hemingway 2014-08-24 13:29:26 -04:00
parent 21e4ff5624
commit e6f70fd2b3

View File

@ -1,28 +1,28 @@
{stdenv, fetchurl {stdenv, fetchurl
, libxml2, libxslt, curl , libxml2, libxslt, curl
, libvorbis, libtheora, speex, libkate }: , libvorbis, libtheora, speex, libkate, libopus }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "icecast-2.3.3"; name = "icecast-2.4.0";
src = fetchurl { src = fetchurl {
url = "http://downloads.xiph.org/releases/icecast/${name}.tar.gz"; url = "http://downloads.xiph.org/releases/icecast/${name}.tar.gz";
sha256 = "0vf38mk13z1czpbj0g8va4rzjf201slqmiwcs8y9i6iwz3shc78v"; sha256 = "0chg8v3c0wkbakjcw73rsfccx13f28arrmmbz9p5fsmiw5bykdqp";
}; };
buildInputs = [ libxml2 libxslt curl libvorbis libtheora speex libkate ]; buildInputs = [ libxml2 libxslt curl libvorbis libtheora speex libkate libopus ];
meta = { meta = {
description = "Server software for streaming multimedia"; description = "Server software for streaming multimedia";
longDescription = '' longDescription = ''
Icecast is a streaming media server which currently supports Ogg Vorbis and MP3 Icecast is a streaming media server which currently supports
audio streams. It can be used to create an Internet radio station or a Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams.
privately running jukebox and many things in between. It is very versatile in It can be used to create an Internet radio station or a privately
that new formats can be added relatively easily and supports open standards for running jukebox and many things in between. It is very versatile
commuincation and interaction. in that new formats can be added relatively easily and supports
open standards for commuincation and interaction.
''; '';
homepage = http://www.icecast.org; homepage = http://www.icecast.org;
license = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;