Skip to content

Commit 2713902

Browse files
dm-mono: init at 0.0 (#406635)
2 parents 8888cbc + 0b3c382 commit 2713902

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11352,6 +11352,13 @@
1135211352
githubId = 19669567;
1135311353
name = "Willy";
1135411354
};
11355+
jennifgcrl = {
11356+
email = "[email protected]";
11357+
github = "jennifgcrl";
11358+
githubId = 110419915;
11359+
matrix = "@fgcrl:matrix.org";
11360+
name = "Jennifer Zhou";
11361+
};
1135511362
jensbin = {
1135611363
email = "[email protected]";
1135711364
github = "jensbin";
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
lib,
3+
stdenvNoCC,
4+
fetchFromGitHub,
5+
}:
6+
stdenvNoCC.mkDerivation {
7+
pname = "dm-mono";
8+
version = "1.0-unstable-2020-04-15";
9+
10+
src = fetchFromGitHub {
11+
owner = "googlefonts";
12+
repo = "dm-mono";
13+
rev = "57fadabfb200a77de2812540026c249dc3013077";
14+
hash = "sha256-Xj6UmvH7tqW6xdobBxuafqc7TB1nrTFwHWv4DaZmwx8=";
15+
};
16+
17+
installPhase = ''
18+
runHook preInstall
19+
20+
install -m644 --target $out/share/fonts/truetype -D exports/*.ttf
21+
22+
runHook postInstall
23+
'';
24+
25+
meta = {
26+
description = "Monospace typeface";
27+
homepage = "https://github.com/googlefonts/dm-mono";
28+
changelog = "https://github.com/googlefonts/dm-mono/blob/main/CHANGELOG.md";
29+
license = lib.licenses.ofl;
30+
maintainers = with lib.maintainers; [ jennifgcrl ];
31+
};
32+
}

0 commit comments

Comments
 (0)