Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
54 lines
1.2 KiB
Nix
54 lines
1.2 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 = [ ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|