about summary refs log tree commit diff
path: root/pkgs/data/fonts/inconsolata/default.nix
blob: 887f37c241b6a8eead2e5f472d0b7126b451c421 (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
51
x@{builderDefsPackage
  , fontforge
  , ...}:
builderDefsPackage
(a :  
let 
  helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ 
    [];

  buildInputs = map (n: builtins.getAttr n x)
    (builtins.attrNames (builtins.removeAttrs x helperArgNames));
  sourceInfo = rec {
    name="inconsolata";
    url="http://www.levien.com/type/myfonts/Inconsolata.sfd";
    hash="1cd29c8396adb18bfeddb1abf5bdb98b677649bb9b09f126d1335b123a4cfddb";
  };
in
rec {
  src = a.fetchurl {
    url = sourceInfo.url;
    sha256 = sourceInfo.hash;
  };

  inherit (sourceInfo) name;
  inherit buildInputs;

  /* doConfigure should be removed if not needed */
  phaseNames = ["copySrc" "generateFontsFromSFD" "installFonts"];
  
  copySrc = a.fullDepEntry (''
    cp ${src} inconsolata.sfd
  '') ["minInit"];

  generateFontsFromSFD = a.generateFontsFromSFD // {deps=["addInputs"];};

  meta = {
    description = "A monospace font for both screen and print";
    maintainers = with a.lib.maintainers;
    [
      raskin
    ];
    platforms = with a.lib.platforms;
      all;
  };
  passthru = {
    updateInfo = {
      downloadPage = "http://www.levien.com/type/myfonts/inconsolata.html";
    };
  };
}) x