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