crimson-pro: init at unstable-2022-08-30

A professionally produced redesign of Crimson by Jacques Le Bailly.
https://github.com/Fonthausen/CrimsonPro

authored by

Naïm Favier and committed by
Robert Helgesson
8a837a95 6bcc117f

+37
+35
pkgs/data/fonts/crimson-pro/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "crimson-pro"; 5 + version = "unstable-2022-08-30"; 6 + 7 + outputs = [ "out" "woff2" ]; 8 + 9 + src = fetchFromGitHub { 10 + owner = "Fonthausen"; 11 + repo = "CrimsonPro"; 12 + rev = "24e8f7bf59ec45d77c67879ad80d97e5f94c787b"; 13 + hash = "sha256-3zFB1AMcC7eNEVA2Mx1OE8rLN9zPzexZ3FtER9wH5ss="; 14 + }; 15 + 16 + dontBuild = true; 17 + 18 + installPhase = '' 19 + runHook preInstall 20 + 21 + install -m444 -Dt $out/share/fonts/truetype fonts/ttf/*.ttf 22 + install -m444 -Dt $out/share/fonts/opentype fonts/otf/*.otf 23 + install -m444 -Dt $woff2/share/fonts/woff2 fonts/webfonts/*.woff2 24 + 25 + runHook postInstall 26 + ''; 27 + 28 + meta = with lib; { 29 + homepage = "https://github.com/Fonthausen/CrimsonPro"; 30 + description = "A professionally produced redesign of Crimson by Jacques Le Bailly"; 31 + license = licenses.ofl; 32 + platforms = platforms.all; 33 + maintainers = with maintainers; [ ncfavier ]; 34 + }; 35 + }
+2
pkgs/top-level/all-packages.nix
··· 26064 26064 26065 26065 crimson = callPackage ../data/fonts/crimson {}; 26066 26066 26067 + crimson-pro = callPackage ../data/fonts/crimson-pro {}; 26068 + 26067 26069 dejavu_fonts = lowPrio (callPackage ../data/fonts/dejavu-fonts {}); 26068 26070 26069 26071 # solve collision for nix-env before https://github.com/NixOS/nix/pull/815