mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
c9eb44eab3
* make font derivations fixed-output where applicable * fix dead links * `stdenv.lib` -> `lib` where `stdenv` is not involved * remove `meta.platforms = [ unix ]` and `meta.platforms = [ linux ]` because the restriction has no sense for data packages
26 lines
574 B
Nix
26 lines
574 B
Nix
{ lib, fetchzip }:
|
|
|
|
fetchzip {
|
|
name = "lmmath-0.903";
|
|
|
|
url = "http://www.gust.org.pl/projects/e-foundry/lm-math/download/lmmath0903otf";
|
|
|
|
postFetch = ''
|
|
unzip $downloadedFile
|
|
|
|
mkdir -p $out/texmf-dist/fonts/opentype
|
|
mkdir -p $out/share/fonts/opentype
|
|
|
|
cp *.{OTF,otf} $out/texmf-dist/fonts/opentype/lmmath-regular.otf
|
|
cp *.{OTF,otf} $out/share/fonts/opentype/lmmath-regular.otf
|
|
|
|
ln -s -r $out/texmf* $out/share/
|
|
'';
|
|
|
|
sha256 = "19821d4vbd6z20jzsw24zh0hhwayglhrfw8larg2w6alhdqi7rln";
|
|
|
|
meta = {
|
|
description = "Latin Modern font";
|
|
};
|
|
}
|
|
|