prociono: init at 2011-05-25
This commit is contained in:
parent
9abf91e1fb
commit
0123af3c14
2 changed files with 36 additions and 0 deletions
34
pkgs/data/fonts/prociono/default.nix
Normal file
34
pkgs/data/fonts/prociono/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ lib, fetchFromGitHub, stdenvNoCC }:
|
||||
|
||||
stdenvNoCC.mkDerivation (self: {
|
||||
pname = "prociono";
|
||||
version = "2011-05-25";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "theleagueof";
|
||||
repo = self.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 = "A 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 ];
|
||||
};
|
||||
})
|
|
@ -27603,6 +27603,8 @@ with pkgs;
|
|||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
prociono = callPackage ../data/fonts/prociono { };
|
||||
|
||||
profont = callPackage ../data/fonts/profont { };
|
||||
|
||||
proggyfonts = callPackage ../data/fonts/proggyfonts { };
|
||||
|
|
Loading…
Reference in a new issue