Merge pull request #94128 from marsam/update-cascadia-code

cascadia-code: 1911.21 -> 2007.01
This commit is contained in:
Mario Rodas 2020-07-29 12:21:19 -05:00 committed by GitHub
commit 9e453cc2b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,44 +1,21 @@
{ stdenv, fetchurl }: { lib, fetchzip }:
let
version = "2007.01";
in
fetchzip {
name = "cascadia-code-${version}";
stdenv.mkDerivation rec { url = "https://github.com/microsoft/cascadia-code/releases/download/v${version}/CascadiaCode-${version}.zip";
pname = "cascadia-code";
version = "1911.21";
srcs = [ sha256 = "173dpr0k4y5b02ps9426pyaazl2pxj1kw5l5jrikbi6zjv4590gb";
(fetchurl {
url = "https://github.com/microsoft/cascadia-code/releases/download/v${version}/Cascadia.ttf";
sha256 = "1m5ymbngjg3n1g3p6vhcq7d825bwwln9afih651ar3jn7j9njnyg";
})
(fetchurl {
url = "https://github.com/microsoft/cascadia-code/releases/download/v${version}/CascadiaMono.ttf";
sha256 = "0vkhm6rhspzd1iayxrzaag099wsc94azfqa3ips7f4x9s8fmbp80";
})
(fetchurl {
url = "https://github.com/microsoft/cascadia-code/releases/download/v${version}/CascadiaMonoPL.ttf";
sha256 = "0xxqd8m2ydn97jngp1a3ik1mzpjbm65pfq02a82gfbbvajq5d673";
})
(fetchurl {
url = "https://github.com/microsoft/cascadia-code/releases/download/v${version}/CascadiaPL.ttf";
sha256 = "1s83c9flvifd05nbhnk8knwnik7p621sr7i94smknigc7d72wqav";
})
];
unpackCmd = '' postFetch = ''
ttfName=$(basename $(stripHash $curSrc)) mkdir -p $out/share/fonts/
cp $curSrc ./$ttfName unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
''; '';
sourceRoot = "."; meta = with lib; {
installPhase = ''
install -Dm444 -t $out/share/fonts/truetype *.ttf
'';
outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = "1gkjs7qa409r4ykdy4ik8i0c3z49hzpklw6kyijhhifhyyyzhz4h";
meta = with stdenv.lib; {
description = "Monospaced font that includes programming ligatures and is designed to enhance the modern look and feel of the Windows Terminal"; description = "Monospaced font that includes programming ligatures and is designed to enhance the modern look and feel of the Windows Terminal";
homepage = "https://github.com/microsoft/cascadia-code"; homepage = "https://github.com/microsoft/cascadia-code";
license = licenses.ofl; license = licenses.ofl;