Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
976 B
Nix
39 lines
976 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenvNoCC,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "prociono";
|
|
version = "2011-05-25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "theleagueof";
|
|
repo = "prociono";
|
|
rev = "f9d9680de6d6f0c13939f23c9dd14cd7853cf844";
|
|
hash = "sha256-gC5E0Z0O2cnthoBEu+UOQLsr3/a/3/JPIx3WCPsXXtk=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D -m444 -t $out/share/fonts/truetype $src/*.ttf
|
|
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Roman serif with blackletter elements";
|
|
longDescription = ''
|
|
"Prociono" (pro-tsee-O-no) is an Esperanto word meaning either the star
|
|
Procyon or the animal species known as the raccoon. It is a roman serif
|
|
with blackletter elements.
|
|
'';
|
|
homepage = "https://www.theleagueofmoveabletype.com/prociono";
|
|
license = lib.licenses.ofl;
|
|
maintainers = with lib.maintainers; [ minijackson ];
|
|
};
|
|
}
|