Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 24 lines 834 B view raw
1{ stdenv, fetchurl, libogg, libpng }: 2 3stdenv.mkDerivation rec { 4 name = "libkate-0.4.1"; 5 6 src = fetchurl { 7 url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libkate/${name}.tar.gz"; 8 sha256 = "0s3vr2nxfxlf1k75iqpp4l78yf4gil3f0v778kvlngbchvaq23n4"; 9 }; 10 11 buildInputs = [ libogg libpng ]; 12 13 meta = with stdenv.lib; { 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 platforms = platforms.unix; 22 license = licenses.bsd3; 23 }; 24}