dm-mono: init at 0.0 (#406635)

This commit is contained in:
Yohann Boniface
2025-05-13 22:23:46 +02:00
committed by GitHub
2 changed files with 39 additions and 0 deletions

View File

@@ -11352,6 +11352,13 @@
githubId = 19669567;
name = "Willy";
};
jennifgcrl = {
email = "jennifer@jezh.me";
github = "jennifgcrl";
githubId = 110419915;
matrix = "@fgcrl:matrix.org";
name = "Jennifer Zhou";
};
jensbin = {
email = "jensbin+git@pm.me";
github = "jensbin";

View File

@@ -0,0 +1,32 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "dm-mono";
version = "1.0-unstable-2020-04-15";
src = fetchFromGitHub {
owner = "googlefonts";
repo = "dm-mono";
rev = "57fadabfb200a77de2812540026c249dc3013077";
hash = "sha256-Xj6UmvH7tqW6xdobBxuafqc7TB1nrTFwHWv4DaZmwx8=";
};
installPhase = ''
runHook preInstall
install -m644 --target $out/share/fonts/truetype -D exports/*.ttf
runHook postInstall
'';
meta = {
description = "Monospace typeface";
homepage = "https://github.com/googlefonts/dm-mono";
changelog = "https://github.com/googlefonts/dm-mono/blob/main/CHANGELOG.md";
license = lib.licenses.ofl;
maintainers = with lib.maintainers; [ jennifgcrl ];
};
}