1 { stdenv, lib, fetchurl, autoreconfHook, pkg-config
2 , libkate, pango, cairo, darwin
5 stdenv.mkDerivation rec {
10 url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libtiger/libtiger-${version}.tar.gz";
11 sha256 = "0rj1bmr9kngrgbxrjbn4f4f9pww0wmf6viflinq7ava7zdav4hkk";
19 substituteInPlace configure.ac --replace "-Werror" "-Wno-error"
22 nativeBuildInputs = [ autoreconfHook pkg-config ];
23 buildInputs = [ libkate pango cairo ]
24 ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.ApplicationServices;
27 homepage = "https://code.google.com/archive/p/libtiger/";
28 description = "A rendering library for Kate streams using Pango and Cairo";
29 platforms = lib.platforms.unix;
30 license = lib.licenses.lgpl21Plus;
31 maintainers = with lib.maintainers; [ matthewbauer ];