nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, fetchFromGitHub, stdenvNoCC }:
2
3stdenvNoCC.mkDerivation (finalAttrs: {
4 pname = "prociono";
5 version = "2011-05-25";
6
7 src = fetchFromGitHub {
8 owner = "theleagueof";
9 repo = finalAttrs.pname;
10 rev = "f9d9680de6d6f0c13939f23c9dd14cd7853cf844";
11 hash = "sha256-gC5E0Z0O2cnthoBEu+UOQLsr3/a/3/JPIx3WCPsXXtk=";
12 };
13
14 installPhase = ''
15 runHook preInstall
16
17 install -D -m444 -t $out/share/fonts/truetype $src/*.ttf
18 install -D -m444 -t $out/share/fonts/opentype $src/*.otf
19
20 runHook postInstall
21 '';
22
23 meta = {
24 description = "A roman serif with blackletter elements";
25 longDescription = ''
26 "Prociono" (pro-tsee-O-no) is an Esperanto word meaning either the star
27 Procyon or the animal species known as the raccoon. It is a roman serif
28 with blackletter elements.
29 '';
30 homepage = "https://www.theleagueofmoveabletype.com/prociono";
31 license = lib.licenses.ofl;
32 maintainers = with lib.maintainers; [ minijackson ];
33 };
34})