51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
autoreconfHook,
|
|
bison,
|
|
flex,
|
|
libogg,
|
|
libpng,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libkate";
|
|
version = "0.4.3";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.xiph.org/";
|
|
owner = "xiph";
|
|
repo = "kate";
|
|
tag = "kate-${finalAttrs.version}";
|
|
hash = "sha256-HwDahmjDC+O321Ba7MnHoQdHOFUMpFzaNdLHQeEg11Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
bison
|
|
flex
|
|
pkg-config # provides macro PKG_CHECK_MODULES
|
|
];
|
|
|
|
buildInputs = [
|
|
libogg
|
|
libpng
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Library for encoding and decoding Kate streams";
|
|
longDescription = ''
|
|
This is libkate, the reference implementation of a codec for the Kate
|
|
bitstream format. Kate is a karaoke and text codec meant for encapsulation
|
|
in an Ogg container. It can carry Unicode text, images, and animate
|
|
them.'';
|
|
homepage = "https://wiki.xiph.org/index.php/OggKate";
|
|
platforms = lib.platforms.unix;
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
})
|