cosmic-term: 1.0.0-alpha.3 -> 1.0.0-alpha.5.1 (#374031)
[NixPkgs.git] / pkgs / by-name / tt / ttf2pt1 / package.nix
blob75b32dc70a2c2d95970e1baeb2ebbc9abfb9d753
2   lib,
3   stdenv,
4   fetchurl,
5   perl,
6   freetype,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "ttf2pt1";
11   version = "3.4.4";
13   src = fetchurl {
14     url = "mirror://sourceforge/ttf2pt1/ttf2pt1-${version}.tgz";
15     sha256 = "1l718n4k4widx49xz7qrj4mybzb8q67kp2jw7f47604ips4654mf";
16   };
18   preConfigure = ''
19     find -type f | xargs sed -i 's@/usr/bin/perl@${perl}/bin/perl@'
20     mkdir -p $out
21     sed -e 's/chown/true/' \
22         -e 's/chgrp/true/' \
23         -e 's@^CFLAGS_FT =.*@CFLAGS_FT=-DUSE_FREETYPE -I${freetype.dev}/include/freetype2@' \
24         -i scripts/{inst_dir,inst_file} Makefile
25     makeFlags="INSTDIR=$out OWNER=`id -u`"
26   '';
28   buildInputs = [ freetype ];
29   nativeBuildInputs = [ perl ];
31   patches = ./gentoo-makefile.patch; # also contains the freetype patch
33   meta = {
34     description = "True Type to Postscript Type 3 converter, fpdf";
35     homepage = "https://ttf2pt1.sourceforge.net/index.html";
36     license = "ttf2pt1";
37     platforms = lib.platforms.linux;
38   };