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

let version = "0.91.12"; in
stdenvNoCC.mkDerivation {
  pname = "open-dyslexic";
  inherit version;

  src = fetchFromGitHub {
    owner = "antijingoist";
    repo = "opendyslexic";
    rev = "v${version}";
    hash = "sha256-a8hh8NGt5djj9EC7ChO3SnnjuYMOryzbHWTK4gC/vIw=";
  };

  installPhase = ''
    runHook preInstall

    install -Dm644 compiled/*.otf -t $out/share/fonts/opentype

    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://opendyslexic.org/";
    description = "Font created to increase readability for readers with dyslexia";
    license = licenses.ofl;
    platforms = platforms.all;
    maintainers = [ maintainers.rycee ];
  };
}