aboutsummaryrefslogtreecommitdiff
path: root/pkgs/servers/icecast
diff options
context:
space:
mode:
authorJack Cummings <jack@mudshark.org>2012-10-14 23:48:46 -0700
committerJack Cummings <jack@mudshark.org>2012-10-14 23:48:46 -0700
commit5ded1fb645ff6acd687707e1eb404ff6082f9321 (patch)
treeb7c9687712998d4da53088d4e6b06ac186cc7c4c /pkgs/servers/icecast
parent29980e0d547ad814fa252ffec7fd8ce8ab79596d (diff)
- icecast-2.3.3, libshout-2.3.1
Diffstat (limited to 'pkgs/servers/icecast')
-rw-r--r--pkgs/servers/icecast/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/servers/icecast/default.nix b/pkgs/servers/icecast/default.nix
new file mode 100644
index 000000000000..24ae245a8a07
--- /dev/null
+++ b/pkgs/servers/icecast/default.nix
@@ -0,0 +1,32 @@
+{stdenv, fetchurl
+, libxml2, libxslt, curl
+, libvorbis, libtheora, speex, libkate }:
+
+stdenv.mkDerivation rec {
+ name = "icecast-2.3.3";
+
+ src = fetchurl {
+ url = "http://downloads.xiph.org/releases/icecast/${name}.tar.gz";
+ sha256 = "0vf38mk13z1czpbj0g8va4rzjf201slqmiwcs8y9i6iwz3shc78v";
+ };
+
+ buildInputs = [ libxml2 libxslt curl libvorbis libtheora speex libkate ];
+
+ meta = {
+ description = "icecast is free 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.
+ '';
+
+
+ homepage = http://www.icecast.org;
+ license = stdenv.lib.licenses.gpl2;
+ maintainers = with stdenv.lib.maintainers; [ jcumming ];
+ };
+}
+