lol

lexend: init at 0.pre+date=2022-01-27

Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com>

+38
+36
pkgs/data/fonts/lexend/default.nix
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchFromGitHub 4 + }: 5 + 6 + stdenvNoCC.mkDerivation rec { 7 + pname = "lexend"; 8 + version = "0.pre+date=2022-01-27"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "googlefonts"; 12 + repo = pname; 13 + rev = "57e6c14e2a9b457e8376044a31525c2100297e9c"; 14 + sha256 = "sha256-+tPggQIO50a8kOSnOVN/MR9ZwX5xZqYVNZO79eog9QA="; 15 + }; 16 + 17 + installPhase = '' 18 + runHook preInstall 19 + 20 + cd fonts 21 + for f in *; do 22 + mkdir -p $out/share/fonts/truetype/lexend/$f 23 + install $f/ttf/* $out/share/fonts/truetype/lexend/$f/ 24 + done 25 + 26 + runHook postInstall 27 + ''; 28 + 29 + meta = with lib; { 30 + homepage = "https://www.lexend.com"; 31 + description = "A variable font family designed to aid in reading proficiency"; 32 + license = licenses.ofl; 33 + platforms = platforms.all; 34 + maintainers = with maintainers; [ fufexan ]; 35 + }; 36 + }
+2
pkgs/top-level/all-packages.nix
··· 3899 3899 3900 3900 lepton-eda = callPackage ../applications/science/electronics/lepton-eda { }; 3901 3901 3902 + lexend = callPackage ../data/fonts/lexend { }; 3903 + 3902 3904 lexicon = callPackage ../tools/admin/lexicon { }; 3903 3905 3904 3906 lief = callPackage ../development/libraries/lief {