1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-27 08:01:14 +00:00
nixpkgs/pkgs/applications/misc/xpdf/default.nix
Eelco Dolstra 6281842b45 * Added Lesstif (a Motif clone).
* Enabled the actual xpdf GUI in xpdf.

svn path=/nixpkgs/trunk/; revision=4327
2005-12-02 22:49:51 +00:00

22 lines
627 B
Nix

{ enableGUI ? true, enablePDFtoPPM ? true
, stdenv, fetchurl, x11 ? null, motif ? null, freetype ? null
}:
assert enableGUI -> x11 != null && motif != null && freetype != null;
assert enablePDFtoPPM -> freetype != 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 []);
freetype = if enableGUI || enablePDFtoPPM then freetype else null;
configureFlags = "--enable-a4-paper"; /* We obey ISO standards! */
}