summary refs log tree commit diff
path: root/pkgs/tools/misc/fontforge/default.nix
blob: ad2820012dbd91385e53de5892fb521ec18d425d (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
28
29
30
31
32
33
34
35
36
37
38
39
{ stdenv, fetchurl, gettext, freetype, zlib
, libungif, libpng, libjpeg, libtiff, libxml2
, withX11 ? false
, libX11 ? null, lib, xproto ? null, libXt ? null
}:

let 
  version = "20110222";
  name = "fontforge-${version}";
in

stdenv.mkDerivation {
  inherit name;
  
  src = fetchurl {
    url = "mirror://sourceforge/fontforge/fontforge_full-${version}.tar.bz2";
    sha256 = "0gj342iyd2qmza523r84m65fm7bymcfd4lbllywbfjzq4s0838lg";
  };
    
  configureFlags = lib.optionalString withX11 "--with-gui=gdraw";
  
  preConfigure = ''
    unpackFile ${freetype.src}
    freetypeSrcPath=$(echo `pwd`/freetype-*)
    configureFlags="$configureFlags --with-freetype-src=$freetypeSrcPath"
    
    substituteInPlace configure \
      --replace /usr/include /no-such-path \
      --replace /usr/lib /no-such-path \
      --replace /usr/local /no-such-path \


    export NIX_LDFLAGS="$NIX_LDFLAGS -lz"
  '';

  buildInputs =
    [ gettext freetype zlib libungif libpng libjpeg libtiff libxml2 ]
    ++ lib.optionals withX11 [ libX11 xproto libXt ];
}