summary refs log tree commit diff
path: root/pkgs/development/libraries/libtiger/default.nix
blob: 58e92f110185089bf90bfaf4735b769a4c45d405 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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";
    platforms = stdenv.lib.platforms.unix;
  };
}