Merge pull request #246078 from yoav-lavi/master

This commit is contained in:
Janik
2023-07-29 20:46:40 +02:00
committed by GitHub
3 changed files with 42 additions and 0 deletions
+6
View File
@@ -18358,6 +18358,12 @@
github = "ymeister";
githubId = 47071325;
};
yoavlavi = {
email = "yoav@yoavlavi.com";
github = "yoav-lavi";
githubId = 14347895;
name = "Yoav Lavi";
};
yochai = {
email = "yochai@titat.info";
github = "yochai";
+34
View File
@@ -0,0 +1,34 @@
{ lib
, stdenvNoCC
, fetchzip
}:
stdenvNoCC.mkDerivation rec {
pname = "commit-mono";
version = "1.132";
src = fetchzip {
url = "https://github.com/eigilnikolajsen/commit-mono/releases/download/${version}/CommitMono-${version}.zip";
sha256 = "sha256-a9zxzjfOFmqemSIb4Tav0l7YtKvbyizDy+1dwPuZ4d4=";
stripRoot = false;
};
dontConfigure = true;
dontPatch = true;
dontBuild = true;
dontFixup = true;
doCheck = false;
installPhase = ''
runHook preInstall
install -Dm644 -t $out/share/fonts/opentype/ *.otf
runHook postInstall
'';
meta = with lib; {
description = "An anonymous and neutral programming typeface focused on creating a better reading experience";
homepage = "https://commitmono.com/";
license = licenses.ofl;
maintainers = [ maintainers.yoavlavi ];
platforms = platforms.all;
};
}
+2
View File
@@ -28877,6 +28877,8 @@ with pkgs;
combinatorial_designs = callPackage ../data/misc/combinatorial_designs { };
commit-mono = callPackage ../data/fonts/commit-mono { };
conway_polynomials = callPackage ../data/misc/conway_polynomials { };
cooper-hewitt = callPackage ../data/fonts/cooper-hewitt { };