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