revert to cascadia-code 2102.25

i really can't handle the cursive anymore it's literally unreadable
This commit is contained in:
LavaDesu 2021-07-05 15:02:04 +07:00
parent 60deb2da8d
commit e2408b449c
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -0,0 +1,12 @@
self: super: {
cascadia-code = let version = "2102.25"; in super.fetchzip {
name = "cascadia-code-${version}";
url = "https://github.com/microsoft/cascadia-code/releases/download/v${version}/CascadiaCode-${version}.zip";
sha256 = "14qhawcf1jmv68zdfbi2zfqdw4cf8fpk7plxzphmkqsp7hlw9pzx";
postFetch = ''
mkdir -p $out/share/fonts/
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
'';
};
}