about summary refs log tree commit diff
path: root/pkgs/tools/audio/ezstream
diff options
context:
space:
mode:
authorMichael Walker <mike@barrucadu.co.uk>2017-07-09 16:46:16 +0100
committerJörg Thalheim <Mic92@users.noreply.github.com>2017-07-09 16:46:16 +0100
commit4aad6d800dff278d3f2b865f48d7577f28abb402 (patch)
treed872cc681f76148050259725c435a361fbad3c0e /pkgs/tools/audio/ezstream
parente86a7e439a560c990b06459d0944c269803ecd26 (diff)
downloadnixlib-4aad6d800dff278d3f2b865f48d7577f28abb402.tar
nixlib-4aad6d800dff278d3f2b865f48d7577f28abb402.tar.gz
nixlib-4aad6d800dff278d3f2b865f48d7577f28abb402.tar.bz2
nixlib-4aad6d800dff278d3f2b865f48d7577f28abb402.tar.lz
nixlib-4aad6d800dff278d3f2b865f48d7577f28abb402.tar.xz
nixlib-4aad6d800dff278d3f2b865f48d7577f28abb402.tar.zst
nixlib-4aad6d800dff278d3f2b865f48d7577f28abb402.zip
ezstream: init at 0.6.0 (#27259)
* ezstream: init at 0.6.0

* ezstream: pkgconfig belongs to nativeBuildInput
Diffstat (limited to 'pkgs/tools/audio/ezstream')
-rw-r--r--pkgs/tools/audio/ezstream/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/tools/audio/ezstream/default.nix b/pkgs/tools/audio/ezstream/default.nix
new file mode 100644
index 000000000000..6524bedf9392
--- /dev/null
+++ b/pkgs/tools/audio/ezstream/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl, libiconv, libshout, taglib, libxml2, pkgconfig }:
+
+stdenv.mkDerivation rec {
+  name = "ezstream-${version}";
+  version = "0.6.0";
+
+  src = fetchurl {
+    url = "https://ftp.osuosl.org/pub/xiph/releases/ezstream/${name}.tar.gz";
+    sha256 = "f86eb8163b470c3acbc182b42406f08313f85187bd9017afb8b79b02f03635c9";
+  };
+
+  buildInputs = [ libiconv libshout taglib libxml2 ];
+  nativeBuildInputs = [ pkgconfig ];
+
+  doCheck = true;
+
+  meta = with stdenv.lib; {
+    description = "A command line source client for Icecast media streaming servers";
+    longDescription = ''
+      Ezstream is a command line source client for Icecast media
+      streaming servers. It began as the successor of the old "shout"
+      utility, and has since gained a lot of useful features.
+
+      In its basic mode of operation, it streams media files or data
+      from standard input without reencoding and thus requires only
+      very little CPU resources.
+    '';
+    homepage = http://icecast.org/ezstream/;
+    license = licenses.gpl2;
+    maintainers = [ maintainers.barrucadu ];
+    platforms = platforms.all;
+  };
+}