nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 50 lines 1.7 kB view raw
1{ 2 lib, 3 fetchFromGitHub, 4 stdenvNoCC, 5}: 6 7stdenvNoCC.mkDerivation { 8 pname = "readexpro"; 9 version = "1.2"; 10 11 src = fetchFromGitHub { 12 owner = "ThomasJockin"; 13 repo = "readexpro"; 14 rev = "563dfbb36ae45e52ec50829b016ce724ac2fca70"; 15 # Upstream repository does not have any tagged releases. The version number seems to only be mentioned in the README.md. 16 hash = "sha256-+CLym2N2O6Opv7pxuVA+sfiENggPD5HRJrVByzaMMN8="; 17 }; 18 19 dontBuild = true; 20 dontConfigure = true; 21 22 installPhase = '' 23 runHook preInstall 24 25 mkdir -p $out/share/fonts/ 26 cp -r $src/fonts/. $out/share/fonts/ 27 28 runHook postInstall 29 ''; 30 31 meta = { 32 description = "World-script expansion of Lexend"; 33 longDescription = '' 34 Readex is the world-script expansion of the font Lexend designed by Thomas Jockin and Nadine Chahine. Readex currently supports Latin and Arabic. 35 36 Lexend is a variable typeface designed by Bonnie Shaver-Troup and Thomas Jockin in 2018. Applying the Shaver-Troup Individually Optimal Text Formation Factors, studies have found readers instantaneously improve their reading fluency. 37 38 This font is based on the Quicksand project from Andrew Paglinawan, initiated in 2008. Quicksand was improved in 2016 by Thomas Jockin for Google Fonts. Thomas modified Quicksand for the specialized task of improving reading fluency in low-proficiency readers (including those with dyslexia.) 39 ''; 40 homepage = "http://www.lexend.com/"; 41 42 # The fetched Font Software is licensed under the SIL Open Font License, Version 1.1. 43 # see https://scripts.sil.org/OFL 44 license = lib.licenses.ofl; 45 46 platforms = lib.platforms.all; 47 48 maintainers = with lib.maintainers; [ S-K-Tiger ]; 49 }; 50}