about summary refs log tree commit diff
path: root/pkgs/applications/misc/xpdf/default.nix
blob: 5ec7cba94b58490c1e0f534b15832c275289689b (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
{ enableGUI ? true, enablePDFtoPPM ? true, useT1Lib ? true
, stdenv, fetchurl, x11 ? null, motif ? null, freetype ? null, t1lib ? null
}:

assert enableGUI -> x11 != null && motif != null && freetype != null;
assert enablePDFtoPPM -> freetype != null;
assert useT1Lib -> t1lib != null;

stdenv.mkDerivation {
  name = "xpdf-3.01";
  builder = ./builder.sh;

  src = fetchurl {
    url = ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.01.tar.gz;
    md5 = "e004c69c7dddef165d768b1362b44268";
  };
  
  buildInputs =
    (if enableGUI then [x11 motif] else []) ++
    (if useT1Lib then [t1lib] else []);
  freetype = if enableGUI || enablePDFtoPPM then freetype else null;
    
  configureFlags = "--enable-a4-paper"; /* We obey ISO standards! */
}