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

Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com>
This commit is contained in:
Mihai Fufezan 2022-06-19 14:57:17 +03:00
parent a419e65544
commit 5b70697f7b
No known key found for this signature in database
GPG key ID: 5899325F2F120900
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, stdenvNoCC
, fetchFromGitHub
}:
stdenvNoCC.mkDerivation rec {
pname = "lexend";
version = "0.pre+date=2022-01-27";
src = fetchFromGitHub {
owner = "googlefonts";
repo = pname;
rev = "57e6c14e2a9b457e8376044a31525c2100297e9c";
sha256 = "sha256-+tPggQIO50a8kOSnOVN/MR9ZwX5xZqYVNZO79eog9QA=";
};
installPhase = ''
runHook preInstall
cd fonts
for f in *; do
mkdir -p $out/share/fonts/truetype/lexend/$f
install $f/ttf/* $out/share/fonts/truetype/lexend/$f/
done
runHook postInstall
'';
meta = with lib; {
homepage = "https://www.lexend.com";
description = "A variable font family designed to aid in reading proficiency";
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ fufexan ];
};
}

View file

@ -3899,6 +3899,8 @@ with pkgs;
lepton-eda = callPackage ../applications/science/electronics/lepton-eda { };
lexend = callPackage ../data/fonts/lexend { };
lexicon = callPackage ../tools/admin/lexicon { };
lief = callPackage ../development/libraries/lief {