mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Merge pull request #181853 from kmein/cardo-font
This commit is contained in:
commit
f5161e5bee
37
pkgs/data/fonts/cardo/default.nix
Normal file
37
pkgs/data/fonts/cardo/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ fetchzip, lib }:
|
||||
|
||||
let
|
||||
version = "1.04";
|
||||
in
|
||||
fetchzip {
|
||||
name = "cardo-${version}";
|
||||
|
||||
url = "http://scholarsfonts.net/cardo104.zip";
|
||||
|
||||
hash = "sha256-eBK6+VQpreWA7jIneNXOcKFcT+cJzhoQ9XXyq93SZ8M=";
|
||||
stripRoot = false;
|
||||
|
||||
postFetch = ''
|
||||
mkdir -p $out/share/fonts/truetype
|
||||
mv $out/*.ttf $out/share/fonts/truetype
|
||||
rm $out/*.pdf
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Cardo is a large Unicode font specifically designed for the needs of classicists, Biblical scholars, medievalists, and linguists";
|
||||
longDescription = ''
|
||||
Cardo is a large Unicode font specifically designed for the needs of
|
||||
classicists, Biblical scholars, medievalists, and linguists. It also
|
||||
works well for general typesetting in situations where a high-quality Old
|
||||
Style font is appropriate. Its large character set supports many modern
|
||||
languages as well as those needed by scholars. Cardo also contains
|
||||
features that are required for high-quality typography such as ligatures,
|
||||
text figures (also known as old style numerals), true small capitals and
|
||||
a variety of punctuation and space characters.
|
||||
'';
|
||||
homepage = "http://scholarsfonts.net/cardofnt.html";
|
||||
license = licenses.ofl;
|
||||
maintainers = with lib.maintainers; [ kmein ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -26053,6 +26053,8 @@ with pkgs;
|
||||
|
||||
cardboard = callPackage ../applications/window-managers/cardboard { };
|
||||
|
||||
cardo = callPackage ../data/fonts/cardo { };
|
||||
|
||||
cage = callPackage ../applications/window-managers/cage {
|
||||
wlroots = wlroots_0_14;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user