1 { lib, stdenv, fetchurl, libogg, libpng }:
3 stdenv.mkDerivation rec {
8 url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libkate/${pname}-${version}.tar.gz";
9 sha256 = "0s3vr2nxfxlf1k75iqpp4l78yf4gil3f0v778kvlngbchvaq23n4";
12 buildInputs = [ libogg libpng ];
15 description = "A library for encoding and decoding Kate streams";
17 This is libkate, the reference implementation of a codec for the Kate
18 bitstream format. Kate is a karaoke and text codec meant for encapsulation
19 in an Ogg container. It can carry Unicode text, images, and animate
21 homepage = "https://code.google.com/archive/p/libkate/";
22 platforms = platforms.unix;
23 license = licenses.bsd3;