mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
36 lines
1.0 KiB
Nix
36 lines
1.0 KiB
Nix
{ lib, fetchFromGitHub }:
|
||
|
||
let
|
||
version = "2020-12-28";
|
||
in fetchFromGitHub {
|
||
name = "comic-mono-font-${version}";
|
||
|
||
owner = "dtinth";
|
||
repo = "comic-mono-font";
|
||
rev = "9a96d04cdd2919964169192e7d9de5012ef66de4";
|
||
|
||
postFetch = ''
|
||
mkdir -p $out/share/fonts
|
||
tar -z -f $downloadedFile --wildcards -x \*.ttf --one-top-level=$out/share/fonts
|
||
|
||
mkdir -p $out/etc/fonts/conf.d
|
||
ln -s ${./comic-mono-weight.conf} $out/etc/fonts/conf.d/30-comic-mono.conf
|
||
'';
|
||
|
||
hash = "sha256-poMU+WfDZcsyWyFiiXKJ284X22CJlxQIzcJtApnIdAY=";
|
||
|
||
meta = with lib; {
|
||
description = "A legible monospace font that looks like Comic Sans";
|
||
longDescription = ''
|
||
A legible monospace font... the very typeface you’ve been trained to
|
||
recognize since childhood. This font is a fork of Shannon Miwa’s Comic
|
||
Shanns (version 1).
|
||
'';
|
||
homepage = "https://dtinth.github.io/comic-mono-font/";
|
||
|
||
license = licenses.mit;
|
||
maintainers = with maintainers; [ an-empty-string totoroot ];
|
||
platforms = platforms.all;
|
||
};
|
||
}
|