mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{ lib
|
|
, stdenvNoCC
|
|
, fetchgit
|
|
, fontforge
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "newcomputermodern";
|
|
version = "5.1";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.gnu.org.ua/newcm.git";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-a6paSdF754jCp4DePbx2in9316H9EjyrAKOQpyc3hEo=";
|
|
};
|
|
|
|
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
|
|
'';
|
|
|
|
meta = {
|
|
description = "Computer Modern fonts including matching non-latin alphabets";
|
|
homepage = "https://ctan.org/pkg/newcomputermodern";
|
|
# "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;
|
|
};
|
|
})
|