evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ca / caladea / package.nix
blobb97dae690d9c797ecc03b22863a7748ae7d3aa06
1 { lib, stdenvNoCC, fetchurl }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "caladea";
5   version = "20130214";
7   src = fetchurl {
8     url = "https://commondatastorage.googleapis.com/chromeos-localmirror/distfiles/crosextrafonts-${version}.tar.gz";
9     hash = "sha256-xI0cL9YTycBslZw02nuDiAWeJAjSuxmEXcPtNfduTQk=";
10   };
12   installPhase = ''
13     runHook preInstall
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
20     runHook postInstall
21   '';
23   meta = with lib; {
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";
28     longDescription = ''
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.
32     '';
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.
40     priority = 10;
41   };