2025-07-06 18:13:50 +00:00

54 lines
1.3 KiB
Nix

{
lib,
stdenvNoCC,
fetchgit,
fontforge,
gitUpdater,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "newcomputermodern";
version = "7.0.4";
src = fetchgit {
url = "https://git.gnu.org.ua/newcm.git";
rev = finalAttrs.version;
hash = "sha256-KPuU0O5Lbh/guDv+HRgWbp712bdfx8mZaPDolaDFlws=";
};
nativeBuildInputs = [ fontforge ];
dontConfigure = true;
buildPhase = ''
runHook preBuild
for i in sfd/*.sfd; do
fontforge -lang=ff -c \
'Open($1);
Generate($1:r + ".otf");
' $i;
done
runHook postBuild
'';
installPhase = ''
runHook preInstall
install -m444 -Dt $out/share/fonts/opentype/public sfd/*.otf
runHook postInstall
'';
passthru.updateScript = gitUpdater { };
meta = {
description = "Computer Modern fonts including matching non-latin alphabets";
homepage = "https://ctan.org/pkg/newcomputermodern";
changelog = "https://mirrors.rit.edu/CTAN/fonts/newcomputermodern/README";
# "The GUST Font License (GFL), which is a free license, legally
# equivalent to the LaTeX Project Public License (LPPL), version 1.3c or
# later." - GUST website
license = lib.licenses.lppl13c;
maintainers = [ lib.maintainers.drupol ];
platforms = lib.platforms.all;
};
})