mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{ lib
|
|
, stdenvNoCC
|
|
, fetchFromGitHub
|
|
, python3Packages
|
|
, nix-update-script
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "nomnatong";
|
|
version = "5.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nomfoundation";
|
|
repo = "font";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-LaMggMZIehQynA6tokOte28bbV3H0kagJRsbE8ZczsM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
python3Packages.afdko
|
|
python3Packages.fonttools
|
|
];
|
|
|
|
sourceRoot = "${finalAttrs.src.name}/src";
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
makeotf -r -f font.pfa -omitMacNames -ff features.txt -mf FontMenuNameDB -ga -ci UnicodeVariationSequences.txt
|
|
otf2ttf NomNaTong-Regular.otf
|
|
sfntedit -d DSIG NomNaTong-Regular.otf
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm444 NomNaTong-Regular.otf -t $out/share/fonts/opentype/
|
|
install -Dm444 NomNaTong-Regular.ttf -t $out/share/fonts/truetype/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
homepage = "http://nomfoundation.org/nom-tools/Nom-Font";
|
|
description = "Hán-Nôm Coded Character Set and Nom Na Tong Regular Reference Font";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|