mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
aleo-fonts: init at 2.0.0-unstable-2023-06-03 (#295576)
This commit is contained in:
commit
32c2991d8f
33
pkgs/by-name/al/aleo-fonts/package.nix
Normal file
33
pkgs/by-name/al/aleo-fonts/package.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
lib,
|
||||
stdenvNoCC,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "aleo-fonts";
|
||||
version = "2.0.0-unstable-2023-06-03";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "AlessioLaiso";
|
||||
repo = "aleo";
|
||||
rev = "ce875e48d9983031648e87f38b7a269f4fbf5eb5";
|
||||
hash = "sha256-HSxP5/sLHQTujBVt1u93625EXEc42lxpt8W1//6ngWM=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm644 fonts/variable/*.ttf -t $out/share/fonts/truetype
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Slab serif typeface designed by Alessio Laiso";
|
||||
homepage = "https://github.com/AlessioLaiso/aleo";
|
||||
license = lib.licenses.ofl;
|
||||
maintainers = with lib.maintainers; [ donovanglover ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user