Merge pull request #118660 from xworld21/mftrace
mftrace: init at 1.2.20
This commit is contained in:
commit
61886ca7b2
3 changed files with 71 additions and 0 deletions
|
@ -10668,6 +10668,12 @@
|
|||
githubId = 11824817;
|
||||
name = "Marti Serra";
|
||||
};
|
||||
xworld21 = {
|
||||
email = "1962985+xworld21@users.noreply.github.com";
|
||||
github = "xworld21";
|
||||
githubId = 1962985;
|
||||
name = "Vincenzo Mantova";
|
||||
};
|
||||
xwvvvvwx = {
|
||||
email = "davidterry@posteo.de";
|
||||
github = "xwvvvvwx";
|
||||
|
|
63
pkgs/tools/typesetting/tex/mftrace/default.nix
Normal file
63
pkgs/tools/typesetting/tex/mftrace/default.nix
Normal file
|
@ -0,0 +1,63 @@
|
|||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
, makeWrapper
|
||||
, autoreconfHook
|
||||
, buildEnv
|
||||
, python3
|
||||
, fontforge
|
||||
, potrace
|
||||
, texlive
|
||||
}:
|
||||
|
||||
/*
|
||||
To use with a texlive distribution, ensure that the desired fonts and
|
||||
the packages kpathsea, t1utils, metafont are available at runtime.
|
||||
|
||||
Possible overrides:
|
||||
- potrace = autotrace
|
||||
- fontforge = ghostscript (limited functionality)
|
||||
- fontforge = null (limited functionality)
|
||||
*/
|
||||
|
||||
let self = stdenv.mkDerivation rec {
|
||||
pname = "mftrace";
|
||||
version = "1.2.20";
|
||||
|
||||
# https://lilypond.org/download/sources/mftrace/mftrace-1.2.20.tar.gz
|
||||
# is incomplete, fetch repo and use autoconf instead
|
||||
# see https://github.com/hanwen/mftrace/issues/13
|
||||
src = fetchFromGitHub {
|
||||
owner = "hanwen";
|
||||
repo = "mftrace";
|
||||
rev = "release/${version}";
|
||||
sha256 = "02ik25aczkbi10jrjlnxby3fmixxrwm2k5r4fkfif3bjfym7nqbc";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper autoreconfHook python3 potrace ];
|
||||
|
||||
buildInputs = [ fontforge potrace ];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/mftrace --prefix PATH : ${lib.makeBinPath buildInputs}
|
||||
'';
|
||||
|
||||
# experimental texlive.combine support
|
||||
# (note that only the bin/ folder will be combined into texlive)
|
||||
passthru.tlType = "bin";
|
||||
passthru.pkgs = [ self ] ++
|
||||
(with texlive; kpathsea.pkgs ++ t1utils.pkgs ++ metafont.pkgs);
|
||||
|
||||
meta = with lib; {
|
||||
description = "Scalable PostScript Fonts for MetaFont";
|
||||
longDescription = ''
|
||||
mftrace is a small Python program that lets you trace a TeX bitmap
|
||||
font into a PFA or PFB font (A PostScript Type1 Scalable Font) or
|
||||
TTF (TrueType) font.
|
||||
'';
|
||||
homepage = "https://lilypond.org/mftrace/";
|
||||
license = with licenses; [ gpl2Only mit ];
|
||||
maintainers = with maintainers; [ xworld21 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}; in self
|
|
@ -6043,6 +6043,8 @@ in
|
|||
|
||||
mesa-demos = callPackage ../tools/graphics/mesa-demos { };
|
||||
|
||||
mftrace = callPackage ../tools/typesetting/tex/mftrace { };
|
||||
|
||||
mhonarc = perlPackages.MHonArc;
|
||||
|
||||
minergate = callPackage ../applications/misc/minergate { };
|
||||
|
|
Loading…
Reference in a new issue