Merge pull request #63079 from dmvianna/inconsolata-nerdfont-2.0.0

inconsolata-nerdfont: init at 2.0.0
This commit is contained in:
Ryan Mulligan
2020-03-26 09:30:45 -07:00
committed by GitHub
3 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{ lib, fetchzip }:
let
version = "2.0.0";
in fetchzip {
name = "inconsolata-nerdfont-${version}";
url = "https://github.com/ryanoasis/nerd-fonts/releases/download/v${version}/Inconsolata.zip";
postFetch = ''
mkdir -p $out/share/fonts/inconsolata-nerdfont
unzip -j $downloadedFile -d $out/share/fonts/inconsolata-nerdfont
'';
sha256 = "06i1akjblqd038cn5lvz67lwp6afpv31vqcfdihp66qisgbgm4w9";
meta = with lib; {
description = ''
Nerd Fonts is a project that attempts to patch as many developer targeted
and/or used fonts as possible. The patch is to specifically add a high
number of additional glyphs from popular 'iconic fonts' such as Font
Awesome, Devicons, Octicons, and others.
'';
homepage = https://github.com/ryanoasis/nerd-fonts;
license = licenses.mit;
platforms = platforms.all;
};
}

View File

@@ -0,0 +1,28 @@
{ lib, fetchzip }:
let
version = "2.0.0";
in fetchzip {
name = "terminus-nerdfont-${version}";
url = "https://github.com/ryanoasis/nerd-fonts/releases/download/v${version}/Terminus.zip";
postFetch = ''
mkdir -p $out/share/fonts/terminus-nerdfont
unzip -j $downloadedFile -d $out/share/fonts/terminus-nerdfont
'';
sha256 = "036i1qwwrb0r8hvcjf3h34w0g7mbsmngvrjic98jgikbz3i2f46c";
meta = with lib; {
description = ''
Nerd Fonts is a project that attempts to patch as many developer targeted
and/or used fonts as possible. The patch is to specifically add a high
number of additional glyphs from popular 'iconic fonts' such as Font
Awesome, Devicons, Octicons, and others.
'';
homepage = https://github.com/ryanoasis/nerd-fonts;
license = licenses.mit;
platforms = platforms.all;
};
}