jetbrains-mono: 1.0.0 -> 1.0.1

Changelog: https://github.com/JetBrains/JetBrainsMono/releases/tag/1.0.1
This commit is contained in:
Mario Rodas 2020-01-21 07:25:00 -05:00
parent ab10bac1b1
commit 1c45292ea3
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8
1 changed files with 6 additions and 4 deletions

View File

@ -1,18 +1,20 @@
{ lib, fetchzip }: { lib, fetchzip }:
let let
version = "1.0.0"; version = "1.0.1";
in in
fetchzip rec { fetchzip rec {
name = "JetBrainsMono-${version}"; name = "JetBrainsMono-${version}";
url = "https://download.jetbrains.com/fonts/JetBrainsMono-${version}.zip"; url = "https://github.com/JetBrains/JetBrainsMono/releases/download/${version}/JetBrainsMono-${version}.zip";
sha256 = "0mwqi66d56v4ml1w7wjsiidrh153jvh0czafyic47rkvmxhnrrhv"; sha256 = "15a8fwyg8ns6krq6nsvgn41iaqbd3lgm3cmv7w370gr6brbn6lxq";
postFetch = '' postFetch = ''
unzip $downloadedFile unzip $downloadedFile
install -m444 -Dt $out/share/fonts/truetype *.ttf install -m444 -Dt $out/share/fonts/truetype ttf/*.ttf
install -m444 -Dt $out/share/fonts/woff/ web/woff/*.woff
install -m444 -Dt $out/share/fonts/woff2/ web/woff2/*.woff2
''; '';
meta = with lib; { meta = with lib; {