about summary refs log tree commit diff
path: root/pkgs/data/fonts/open-dyslexic/default.nix
blob: 8a6b01b1d6d79451c60a3cc30d5327724c36d369 (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
{ lib, stdenvNoCC, fetchzip }:

stdenvNoCC.mkDerivation {
  pname = "open-dyslexic";
  version = "2016-06-23";

  src = fetchzip {
    url = "https://github.com/antijingoist/open-dyslexic/archive/20160623-Stable.zip";
    hash = "sha256-f/uavR3n0qHyqumZDw7r8Zy0om2RlJAKyWuGaUXSJ1s=";
  };

  installPhase = ''
    runHook preInstall

    install -Dm644 otf/*.otf -t $out/share/fonts/opentype
    install -Dm644 README.md -t $out/share/doc/open-dyslexic

    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://opendyslexic.org/";
    description = "Font created to increase readability for readers with dyslexia";
    license = "Bitstream Vera License (https://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts)";
    platforms = platforms.all;
    maintainers = [ maintainers.rycee ];
  };
}