nixpkgs/pkgs/servers/icecast/default.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-15 07:07:56 +00:00
{lib, stdenv, fetchurl
2012-10-15 06:48:46 +00:00
, libxml2, libxslt, curl
, libvorbis, libtheora, speex, libkate, libopus }:
2012-10-15 06:48:46 +00:00
stdenv.mkDerivation rec {
pname = "icecast";
version = "2.4.4";
2012-10-15 06:48:46 +00:00
src = fetchurl {
url = "http://downloads.xiph.org/releases/icecast/icecast-${version}.tar.gz";
sha256 = "0i2d9rhav0x6js2qhjf5iy6j2a7f0d11ail0lfv40hb1kygrgda9";
2012-10-15 06:48:46 +00:00
};
buildInputs = [ libxml2 libxslt curl libvorbis libtheora speex libkate libopus ];
2012-10-15 06:48:46 +00:00
hardeningEnable = [ "pie" ];
2016-02-26 23:06:53 +00:00
2012-10-15 06:48:46 +00:00
meta = {
description = "Server software for streaming multimedia";
2012-10-15 06:48:46 +00:00
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.
2012-10-15 06:48:46 +00:00
'';
homepage = "https://www.icecast.org";
2021-01-15 07:07:56 +00:00
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ jcumming ];
platforms = with lib.platforms; unix;
2012-10-15 06:48:46 +00:00
};
}