inter-nerdfont: init at 4.0

This commit is contained in:
midirhee12 2024-07-28 19:28:41 -05:00 committed by éclairevoyant
parent bb0c832f0b
commit 839887d881
No known key found for this signature in database
GPG Key ID: E3813AEAA02DB54B

View File

@ -0,0 +1,44 @@
{
lib,
fontforge,
nerd-font-patcher,
stdenvNoCC,
fetchzip,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "inter-nerdfont";
version = "4.0";
src = fetchzip {
url = "https://github.com/rsms/inter/releases/download/v${finalAttrs.version}/Inter-${finalAttrs.version}.zip";
stripRoot = false;
hash = "sha256-hFK7xFJt69n+98+juWgMvt+zeB9nDkc8nsR8vohrFIc=";
};
nativeBuildInputs = [
fontforge
nerd-font-patcher
];
buildPhase = ''
runHook preBuild
nerd-font-patcher Inter.ttc
runHook postBuild
'';
installPhase = ''
runHook preInstall
install -Dm444 'Inter Nerd Font.ttc' $out/share/fonts/truetype/InterNerdFont.ttc
cp *.ttf $out/share/fonts/truetype
runHook postInstall
'';
meta = {
homepage = "https://gitlab.com/mid_os/inter-nerdfont";
description = "NerdFont patch of the Inter font";
license = lib.licenses.ofl;
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.midirhee12 ];
};
})