about summary refs log tree commit diff
path: root/pkgs/servers/icecast
diff options
context:
space:
mode:
authorEmery Hemingway <emery@vfemail.net>2014-08-24 13:29:26 -0400
committerEmery Hemingway <emery@vfemail.net>2014-11-20 17:41:22 -0500
commite6f70fd2b3c74ded46a6c310e7d972f885242c37 (patch)
treec49ad9d94efb8ca1bf4e0b41783de79a141fbded /pkgs/servers/icecast
parent21e4ff562409747a4ce18ffd61375db8dcd8116f (diff)
icecast: update 2.3.3 to 2.4.0
now with opus support
Diffstat (limited to 'pkgs/servers/icecast')
-rw-r--r--pkgs/servers/icecast/default.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/servers/icecast/default.nix b/pkgs/servers/icecast/default.nix
index 8b940fdb0cfc3..6b8a75e6901a5 100644
--- a/pkgs/servers/icecast/default.nix
+++ b/pkgs/servers/icecast/default.nix
@@ -1,28 +1,28 @@
 {stdenv, fetchurl
 , libxml2, libxslt, curl
-, libvorbis, libtheora, speex, libkate }:
+, libvorbis, libtheora, speex, libkate, libopus }:
 
 stdenv.mkDerivation rec {
-  name = "icecast-2.3.3";
+  name = "icecast-2.4.0";
 
   src = fetchurl {
     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 = {
     description = "Server software for streaming multimedia";
 
     longDescription = ''
-      Icecast is a streaming media server which currently supports Ogg Vorbis and MP3
-      audio streams. It can be used to create an Internet radio station or a
-      privately running jukebox and many things in between. It is very versatile in
-      that new formats can be added relatively easily and supports open standards for
-      commuincation and interaction.
+      Icecast is a streaming media server which currently supports
+      Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams.
+      It can be used to create an Internet radio station or a privately
+      running jukebox and many things in between. It is very versatile
+      in that new formats can be added relatively easily and supports
+      open standards for commuincation and interaction.
     '';
-  
 
     homepage = http://www.icecast.org;
     license = stdenv.lib.licenses.gpl2;