2024-02-09 04:33:47 +01:00
|
|
|
{ lib
|
|
|
|
, stdenvNoCC
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
2024-04-06 01:01:41 +02:00
|
|
|
stdenvNoCC.mkDerivation {
|
2024-02-09 04:33:47 +01:00
|
|
|
pname = "aleo-fonts";
|
|
|
|
version = "unstable-2023-06-03";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AlessioLaiso";
|
|
|
|
repo = "aleo";
|
|
|
|
rev = "ce875e48d9983031648e87f38b7a269f4fbf5eb5";
|
|
|
|
hash = "sha256-HSxP5/sLHQTujBVt1u93625EXEc42lxpt8W1//6ngWM=";
|
|
|
|
};
|
|
|
|
|
2024-04-21 17:17:34 +02:00
|
|
|
installPhase = ''
|
2024-02-09 04:33:47 +01:00
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
install -Dm644 fonts/variable/*.ttf -t $out/share/fonts/truetype/AleoFonts
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2024-06-21 06:40:19 +02:00
|
|
|
meta = {
|
2024-02-09 04:33:47 +01:00
|
|
|
description = "Slab serif typeface designed by Alessio Laiso";
|
2024-04-17 01:50:54 +02:00
|
|
|
homepage = "https://github.com/AlessioLaiso/aleo";
|
2024-06-21 06:40:19 +02:00
|
|
|
license = lib.licenses.ofl;
|
|
|
|
maintainers = with lib.maintainers; [ donovanglover ];
|
|
|
|
platforms = lib.platforms.all;
|
2024-02-09 04:33:47 +01:00
|
|
|
};
|
2024-04-06 01:01:41 +02:00
|
|
|
}
|