1{ stdenv, fetchurl, libogg, libpng }:
2
3stdenv.mkDerivation rec {
4 name = "libkate-0.3.8";
5
6 src = fetchurl {
7 url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libkate/${name}.tar.gz";
8 sha256 = "00d6561g31la9bb8q99b7l4rvi67yiwm50ky8dhlsjd88h7rks2n";
9 };
10
11 buildInputs = [ libogg libpng ];
12
13 meta = {
14 description = "A library for encoding and decoding Kate streams";
15 longDescription = ''
16 This is libkate, the reference implementation of a codec for the Kate
17 bitstream format. Kate is a karaoke and text codec meant for encapsulation
18 in an Ogg container. It can carry Unicode text, images, and animate
19 them.'';
20 homepage = https://code.google.com/archive/p/libkate/;
21 maintainers = [ ];
22 platforms = stdenv.lib.platforms.unix;
23 };
24}