3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/fonts/cascadia-code/default.nix

26 lines
802 B
Nix
Raw Normal View History

2020-07-25 10:20:00 +01:00
{ lib, fetchzip }:
let
2021-07-20 19:34:41 +01:00
version = "2106.17";
2020-07-25 10:20:00 +01:00
in
fetchzip {
name = "cascadia-code-${version}";
2019-09-19 03:00:00 +01:00
2020-07-25 10:20:00 +01:00
url = "https://github.com/microsoft/cascadia-code/releases/download/v${version}/CascadiaCode-${version}.zip";
2019-09-19 03:00:00 +01:00
2021-07-20 19:34:41 +01:00
sha256 = "sha256-EsXD6gY3q3KIk37vYPz731lLz5989cd+s5fz5rKIn2k=";
2019-09-19 03:00:00 +01:00
2020-07-25 10:20:00 +01:00
postFetch = ''
mkdir -p $out/share/fonts/
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
2019-09-19 03:00:00 +01:00
'';
2020-07-25 10:20:00 +01:00
meta = with lib; {
2019-09-19 03:00:00 +01:00
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";
license = licenses.ofl;
maintainers = [ maintainers.marsam ];
platforms = platforms.all;
};
}