2021-01-21 17:00:13 +00:00
|
|
|
{ lib, 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 {
|
2021-06-22 14:21:29 +01:00
|
|
|
pname = "libshout";
|
|
|
|
version = "2.4.5";
|
2012-10-15 07:48:46 +01:00
|
|
|
|
2014-05-30 19:51:14 +01:00
|
|
|
src = fetchurl {
|
2021-06-22 14:21:29 +01:00
|
|
|
url = "https://downloads.xiph.org/releases/libshout/${pname}-${version}.tar.gz";
|
2021-01-20 03:09:18 +00:00
|
|
|
sha256 = "sha256-2eVoZopnOZTr4/HrXyvuBuMjal25K40MSH4cD4hqaJA=";
|
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";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = with lib.maintainers; [ jcumming ];
|
|
|
|
platforms = with lib.platforms; unix;
|
2012-10-15 07:48:46 +01:00
|
|
|
};
|
|
|
|
}
|