summary refs log tree commit diff
path: root/pkgs/tools/typesetting/xmlroff/default.nix
blob: 73712c3fdfd8a3b9bc3f0d4135a104685fa49c0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl, pkgconfig, libxml2, libxslt, popt
, glib, pango, libgnomeprint, pangoxsl, gtk}:

stdenv.mkDerivation {
  #name = "xmlroff-0.3.5";
  name = "xmlroff-0.3.98";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/xmlroff-0.3.98.tar.gz;
    md5 = "6c1d05b6480e98870751bf9102ea68e2";
  };

  buildInputs = [
    pkgconfig
    libxml2
    libxslt
    glib
    pango
    libgnomeprint
    pangoxsl
    gtk
    popt
  ];

  configureFlags = "--disable-pangoxsl";

  patches = [./xmlroff.patch];
}