Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
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;
|
|
};
|
|
})
|