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