mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
* Nix expression for installing some fonts from Vista.
svn path=/nixpkgs/trunk/; revision=9432
This commit is contained in:
parent
08f647a5e6
commit
deca7d257f
30
pkgs/data/fonts/vista-fonts/default.nix
Normal file
30
pkgs/data/fonts/vista-fonts/default.nix
Normal file
@ -0,0 +1,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 = "
|
||||
ensureDir $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...
|
||||
};
|
||||
}
|
@ -3249,6 +3249,10 @@ rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
vistafonts = import ../data/fonts/vista-fonts {
|
||||
inherit fetchurl stdenv cabextract;
|
||||
};
|
||||
|
||||
xkeyboard_config = import ../data/misc/xkeyboard-config {
|
||||
inherit fetchurl stdenv perl perlXMLParser;
|
||||
inherit (xlibs) xkbcomp;
|
||||
|
Loading…
Reference in New Issue
Block a user