about summary refs log tree commit diff
path: root/pkgs/data/fonts/lmodern/1.010.nix
blob: 3b6a0df92d28c0eda34f7b7b487c30e258186ca2 (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
args : with args; 
rec {
  src = fetchurl {
    url = http://ftp.de.debian.org/debian/pool/main/l/lmodern/lmodern_1.010x.orig.tar.gz;
    sha256 = "0nwxj1ng7rvnp16jxcs25hbc5in65mdk4a3g3rlaq91i5qpq7mxj";
  };

  buildInputs = [];
  configureFlags = [];

  /* doConfigure should be specified separately */
  phaseNames = ["doCopy"];

  doCopy = FullDepEntry(''
    ensureDir $out/share/texmf/

    cp -r ./* $out/share/texmf/
  '') ["minInit" "defEnsureDir" "doUnpack"];

  name = "lmodern-" + version;
  meta = {
    description = "Latin Modern font";
  };
}