My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libshout/default.nix

35 lines
1.0 KiB

{ 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 = "https://www.icecast.org";
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ jcumming ];
mainProgram = "shout";
platforms = with lib.platforms; unix;
};
}