summary refs log tree commit diff
path: root/pkgs/data/fonts/vista-fonts/default.nix
blob: 19996f3f1a3107185d8750b11b126baf45f2f726 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{stdenv, fetchurl, cabextract}:

stdenv.mkDerivation {
  name = "vista-fonts-1";
  
  src = fetchurl {
    url = http://download.microsoft.com/download/f/5/a/f5a3df76-d856-4a61-a6bd-722f52a5be26/PowerPointViewer.exe;
    sha256 = "07vhjdw8iip7gxk6wvp4myhvbn9619g10j9qvpbzz4ihima57ry4";
  };

  buildInputs = [cabextract];

  unpackPhase = "
    cabextract --lowercase --filter ppviewer.cab $src
    cabextract --lowercase --filter '*.TTF' ppviewer.cab
    sourceRoot=.
  ";
  
  buildPhase = "true";
  
  installPhase = "
    mkdir -p $out/share/fonts/truetype; cp *.ttf $out/share/fonts/truetype
  ";

  meta = {
    description = "Some TrueType fonts from Microsoft Windows Vista (Calibri, Cambria, Candara, Consolas, Constantia, Corbel)";
    homepage = http://www.microsoft.com/typography/ClearTypeFonts.mspx;
    binaryDistribution = false; # haven't read the EULA, but we probably can't redistribute these files, so...
  };
}