evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ca / cardo / package.nix
blobc862ea7ce8895e56c9a0635e4852e4dbbdec5a9b
1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation {
4   pname = "cardo";
5   version = "1.04";
7   src = fetchzip {
8     url = "https://scholarsfonts.net/cardo104.zip";
9     stripRoot = false;
10     hash = "sha256-NU6/H5f0JBlVo3L3uUcl7IvNxPMXD8UQY9k5o2YA5Vo=";
11   };
13   installPhase = ''
14     runHook preInstall
16     mkdir -p $out/share/fonts/truetype
17     mv *.ttf $out/share/fonts/truetype
19     runHook postInstall
20   '';
22   meta = with lib; {
23     description = "Cardo is a large Unicode font specifically designed for the needs of classicists, Biblical scholars, medievalists, and linguists";
24     longDescription = ''
25       Cardo is a large Unicode font specifically designed for the needs of
26       classicists, Biblical scholars, medievalists, and linguists. It also
27       works well for general typesetting in situations where a high-quality Old
28       Style font is appropriate. Its large character set supports many modern
29       languages as well as those needed by scholars. Cardo also contains
30       features that are required for high-quality typography such as ligatures,
31       text figures (also known as old style numerals), true small capitals and
32       a variety of punctuation and space characters.
33     '';
34     homepage = "http://scholarsfonts.net/cardofnt.html";
35     license = licenses.ofl;
36     maintainers = with lib.maintainers; [ kmein ];
37     platforms = platforms.all;
38   };