about summary refs log tree commit diff
path: root/pkgs/data/fonts/et-book/default.nix
blob: 6dfa369d606df8300b18bd0023924a2776e96c38 (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
{ lib, stdenvNoCC, fetchFromGitHub }:

stdenvNoCC.mkDerivation rec {
  pname = "et-book";
  version = "unstable-2015-10-05";

  src = fetchFromGitHub {
    owner = "edwardtufte";
    repo = pname;
    rev = "7e8f02dadcc23ba42b491b39e5bdf16e7b383031";
    hash = "sha256-B6ryC9ibNop08TJC/w9LSHHwqV/81EezXsTUJFq8xpo=";
  };

  installPhase = ''
    runHook preInstall

    mkdir -p $out/share/fonts/truetype
    cp -t $out/share/fonts/truetype source/4-ttf/*.ttf

    runHook postInstall
  '';

  meta = with lib; {
    description = "Typeface used in Edward Tufte’s books";
    license = licenses.mit;
    platforms = platforms.all;
    maintainers = with maintainers; [ jethro ];
  };
}