depot/third_party/nixpkgs/pkgs/data/fonts/prociono/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

34 lines
989 B
Nix

{ lib, fetchFromGitHub, stdenvNoCC }:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "prociono";
version = "2011-05-25";
src = fetchFromGitHub {
owner = "theleagueof";
repo = finalAttrs.pname;
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 ];
};
})