mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
43 lines
1.4 KiB
Nix
43 lines
1.4 KiB
Nix
{ lib, stdenvNoCC, fetchurl, cabextract }:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "vista-fonts";
|
|
version = "1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mscorefonts2/cabs/PowerPointViewer.exe";
|
|
sha256 = "07vhjdw8iip7gxk6wvp4myhvbn9619g10j9qvpbzz4ihima57ry4";
|
|
};
|
|
|
|
nativeBuildInputs = [ cabextract ];
|
|
|
|
unpackPhase = ''
|
|
cabextract --lowercase --filter ppviewer.cab $src
|
|
cabextract --lowercase --filter '*.TTF' ppviewer.cab
|
|
cabextract --lowercase --filter '*.TTC' ppviewer.cab
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/fonts/truetype
|
|
cp *.ttf *.ttc $out/share/fonts/truetype
|
|
|
|
# Set up no-op font configs to override any aliases set up by
|
|
# other packages.
|
|
mkdir -p $out/etc/fonts/conf.d
|
|
for name in Calibri Cambria Candara Consolas Constantia Corbel ; do
|
|
substitute ${./no-op.conf} $out/etc/fonts/conf.d/30-''${name,,}.conf \
|
|
--subst-var-by fontname $name
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
description = "Some TrueType fonts from Microsoft Windows Vista (Calibri, Cambria, Candara, Consolas, Constantia, Corbel)";
|
|
homepage = "http://www.microsoft.com/typography/ClearTypeFonts.mspx";
|
|
license = lib.licenses.unfree; # haven't read the EULA, but we probably can't redistribute these files, so...
|
|
|
|
# Set a non-zero priority to allow easy overriding of the
|
|
# fontconfig configuration files.
|
|
priority = 5;
|
|
};
|
|
}
|