3734c633da
Semi-automatic update. These checks were performed: - built on NixOS - found 0.4.1 with grep in /nix/store/mc5wm3bsmx9n4xxf54by4hck21yjzljx-libkate-0.4.1 - found 0.4.1 in filename of file in /nix/store/mc5wm3bsmx9n4xxf54by4hck21yjzljx-libkate-0.4.1 cc ""
25 lines
822 B
Nix
25 lines
822 B
Nix
{ stdenv, fetchurl, libogg, libpng }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libkate-0.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libkate/${name}.tar.gz";
|
|
sha256 = "0s3vr2nxfxlf1k75iqpp4l78yf4gil3f0v778kvlngbchvaq23n4";
|
|
};
|
|
|
|
buildInputs = [ libogg libpng ];
|
|
|
|
meta = {
|
|
description = "A 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://code.google.com/archive/p/libkate/;
|
|
maintainers = [ ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|