2021-01-19 06:50:56 +00:00
|
|
|
{ stdenv, fetchurl, pkg-config
|
2014-05-30 19:51:14 +01:00
|
|
|
, libvorbis, libtheora, speex }:
|
2012-10-15 07:48:46 +01:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
# need pkg-config so that libshout installs ${out}/lib/pkgconfig/shout.pc
|
2012-10-15 07:48:46 +01:00
|
|
|
|
2012-10-22 05:59:23 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-11-03 07:18:49 +00:00
|
|
|
name = "libshout-2.4.4";
|
2012-10-15 07:48:46 +01:00
|
|
|
|
2014-05-30 19:51:14 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://downloads.xiph.org/releases/libshout/${name}.tar.gz";
|
2020-11-03 07:18:49 +00:00
|
|
|
sha256 = "1hz670a4pfpsb89b0mymy8nw4rx8x0vmh61gq6j1vbg70mfhrscc";
|
2014-05-30 19:51:14 +01:00
|
|
|
};
|
2012-10-15 07:48:46 +01:00
|
|
|
|
2016-09-19 14:06:46 +01:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2014-05-30 19:51:14 +01:00
|
|
|
propagatedBuildInputs = [ libvorbis libtheora speex ];
|
2012-10-15 07:48:46 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.icecast.org";
|
2012-10-15 07:48:46 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
2012-10-15 07:48:46 +01:00
|
|
|
};
|
|
|
|
}
|