about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/pecita/default.nix
blob: 568363889ff239e69c86ef266ecb29f5302c9087 (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, fetchurl }:

stdenvNoCC.mkDerivation {
  pname = "pecita";
  version = "5.4";

  src = fetchurl {
    url = "http://pecita.eu/b/Pecita.otf";
    hash = "sha256-D9IZ+p4UFHUNt9me7D4vv0x6rMK9IaViKPliCEyX6t4=";
  };

  dontUnpack = true;

  installPhase = ''
    runHook preInstall

    mkdir -p $out/share/fonts/opentype
    cp -v $src $out/share/fonts/opentype/Pecita.otf

    runHook postInstall
  '';

  meta = with lib; {
    homepage = "http://pecita.eu/police-en.php";
    description = "Handwritten font with connected glyphs";
    license = licenses.ofl;
    platforms = platforms.all;
    maintainers = [ maintainers.rycee ];
  };
}