about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libshout
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libshout')
-rw-r--r--nixpkgs/pkgs/development/libraries/libshout/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libshout/default.nix b/nixpkgs/pkgs/development/libraries/libshout/default.nix
new file mode 100644
index 000000000000..5b284e4408c6
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libshout/default.nix
@@ -0,0 +1,34 @@
+{ lib, stdenv, fetchurl, pkg-config
+, libvorbis, libtheora, speex }:
+
+# need pkg-config so that libshout installs ${out}/lib/pkgconfig/shout.pc
+
+stdenv.mkDerivation rec {
+  pname = "libshout";
+  version = "2.4.5";
+
+  src = fetchurl {
+    url = "https://downloads.xiph.org/releases/libshout/${pname}-${version}.tar.gz";
+    sha256 = "sha256-2eVoZopnOZTr4/HrXyvuBuMjal25K40MSH4cD4hqaJA=";
+  };
+
+  outputs = [ "out" "dev" "doc" ];
+
+  nativeBuildInputs = [ pkg-config ];
+  propagatedBuildInputs = [ libvorbis libtheora speex ];
+
+  meta = {
+    description = "icecast 'c' language bindings";
+
+    longDescription = ''
+      Libshout is a library for communicating with and sending data to an icecast
+      server.  It handles the socket connection, the timing of the data, and prevents
+      bad data from getting to the icecast server.
+    '';
+
+    homepage = "http://www.icecast.org";
+    license = lib.licenses.gpl2;
+    maintainers = with lib.maintainers; [ jcumming ];
+    platforms = with lib.platforms; unix;
+  };
+}