about summary refs log tree commit diff
path: root/pkgs/data/fonts/eb-garamond/default.nix
blob: 99c9b53217e5255684f23fff3197e01538597661 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
x@{builderDefsPackage
  , unzip
  , ...}:
builderDefsPackage
(a :
let
  helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
    [];

  buildInputs = map (n: builtins.getAttr n x)
    (builtins.attrNames (builtins.removeAttrs x helperArgNames));
  sourceInfo = rec {
    version="0.016";
    name="EBGaramond";
    url="https://bitbucket.org/georgd/eb-garamond/downloads/${name}-${version}.zip";
    hash="0y630khn5zh70al3mm84fs767ac94ffyz1w70zzhrhambx07pdx0";
  };
in
rec {
  src = a.fetchurl {
    url = sourceInfo.url;
    sha256 = sourceInfo.hash;
  };

  name = "eb-garamond-${sourceInfo.version}";
  inherit buildInputs;

  phaseNames = ["doUnpack" "installFonts"];

  # This will clean up if/when 8263996 lands.
  doUnpack = a.fullDepEntry (''
    unzip ${src}
    cd ${sourceInfo.name}*
    mv {ttf,otf}/* .
  '') ["addInputs"];

  meta = with a.lib; {
    description = "Digitization of the Garamond shown on the Egenolff-Berner specimen";
    maintainers = with maintainers; [ relrod ];
    platforms = platforms.all;
    license = licenses.ofl;
    homepage = http://www.georgduffner.at/ebgaramond/;
  };
  passthru = {
    updateInfo = {
      downloadPage = "https://github.com/georgd/EB-Garamond/releases";
    };
  };
}) x