2012-10-15 08:48:46 +02:00
|
|
|
{stdenv, fetchurl
|
|
|
|
, libxml2, libxslt, curl
|
2014-08-24 19:29:26 +02:00
|
|
|
, libvorbis, libtheora, speex, libkate, libopus }:
|
2012-10-15 08:48:46 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-11-01 21:48:22 +01:00
|
|
|
name = "icecast-2.4.4";
|
2012-10-15 08:48:46 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://downloads.xiph.org/releases/icecast/${name}.tar.gz";
|
2018-11-01 21:48:22 +01:00
|
|
|
sha256 = "0i2d9rhav0x6js2qhjf5iy6j2a7f0d11ail0lfv40hb1kygrgda9";
|
2012-10-15 08:48:46 +02:00
|
|
|
};
|
|
|
|
|
2014-08-24 19:29:26 +02:00
|
|
|
buildInputs = [ libxml2 libxslt curl libvorbis libtheora speex libkate libopus ];
|
2012-10-15 08:48:46 +02:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-27 00:06:53 +01:00
|
|
|
|
2012-10-15 08:48:46 +02:00
|
|
|
meta = {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Server software for streaming multimedia";
|
2012-10-15 08:48:46 +02:00
|
|
|
|
|
|
|
longDescription = ''
|
2014-08-24 19:29:26 +02:00
|
|
|
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.
|
2012-10-15 08:48:46 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.icecast.org;
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
2012-10-15 08:48:46 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|