nixpkgs/pkgs/data/fonts/fira-code/symbols.nix
2017-05-16 13:50:31 +02:00

25 lines
881 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ stdenv, runCommand, fetchurl, unzip }:
runCommand "fira-code-symbols-20160811" {
src = fetchurl {
url = "https://github.com/tonsky/FiraCode/files/412440/FiraCode-Regular-Symbol.zip";
sha256 = "01sk8cmm50xg2vwf0ff212yi5gd2sxcb5l4i9g004alfrp7qaqxg";
};
buildInputs = [ unzip ];
meta = with stdenv.lib; {
description = "FiraCode unicode ligature glyphs in private use area";
longDescription = ''
FiraCode uses ligatures, which some editors dont support.
This addition adds them as glyphs to the private unicode use area.
See https://github.com/tonsky/FiraCode/issues/211.
'';
license = licenses.ofl;
maintainers = [ maintainers.profpatsch ];
homepage = "https://github.com/tonsky/FiraCode/issues/211#issuecomment-239058632";
};
} ''
mkdir -p $out/share/fonts/opentype
unzip "$src" -d $out/share/fonts/opentype
''