nixpkgs/pkgs/servers/icecast/default.nix
Emery Hemingway e6f70fd2b3 icecast: update 2.3.3 to 2.4.0
now with opus support
2014-11-20 17:41:22 -05:00

33 lines
1.0 KiB
Nix

{stdenv, fetchurl
, libxml2, libxslt, curl
, libvorbis, libtheora, speex, libkate, libopus }:
stdenv.mkDerivation rec {
name = "icecast-2.4.0";
src = fetchurl {
url = "http://downloads.xiph.org/releases/icecast/${name}.tar.gz";
sha256 = "0chg8v3c0wkbakjcw73rsfccx13f28arrmmbz9p5fsmiw5bykdqp";
};
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 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;
maintainers = with stdenv.lib.maintainers; [ jcumming ];
};
}