1 { lib, stdenvNoCC, fetchurl }:
3 stdenvNoCC.mkDerivation rec {
8 url = "https://commondatastorage.googleapis.com/chromeos-localmirror/distfiles/crosextrafonts-${version}.tar.gz";
9 hash = "sha256-xI0cL9YTycBslZw02nuDiAWeJAjSuxmEXcPtNfduTQk=";
15 mkdir -p $out/etc/fonts/conf.d
16 mkdir -p $out/share/fonts/truetype
17 cp -v *.ttf $out/share/fonts/truetype
18 cp -v ${./cambria-alias.conf} $out/etc/fonts/conf.d/30-cambria.conf
24 # This font doesn't appear to have any official web site but this
25 # one provides some good information and samples.
26 homepage = "http://openfontlibrary.org/en/font/caladea";
27 description = "Serif font metric-compatible with Microsoft Cambria";
29 Caladea is a free font that is metric-compatible with the
30 Microsoft Cambria font. Developed by Carolina Giovagnoli and
31 Andrés Torresi at Huerta Tipográfica foundry.
33 license = licenses.asl20;
34 platforms = platforms.all;
35 maintainers = [ maintainers.rycee ];
37 # Reduce the priority of this package. The intent is that if you
38 # also install the `vista-fonts` package, then you probably will
39 # not want to install the font alias of this package.