summary refs log tree commit diff
path: root/pkgs/development/libraries/libtiger/default.nix
blob: 5461421769ba8a8f18c9269c9f23b8b38acd0f1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, libkate, pango, cairo, pkgconfig }:

stdenv.mkDerivation rec {
  name = "libtiger-0.3.4";

  src = fetchurl {
    url = "http://libtiger.googlecode.com/files/${name}.tar.gz";
    sha256 = "0rj1bmr9kngrgbxrjbn4f4f9pww0wmf6viflinq7ava7zdav4hkk";
  };

  buildInputs = [ libkate pango cairo pkgconfig ];

  meta = {
    homepage = http://code.google.com/p/libtiger/;
    authors = [ "Vincent Penquerc'h" ];
    description = "A rendering library for Kate streams using Pango and Cairo";
  };
}