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

stdenvNoCC.mkDerivation rec {
  pname = "lao";
  version = "0.0.20060226";

  src = fetchurl {
    url = "mirror://debian/pool/main/f/fonts-${pname}/fonts-${pname}_${version}.orig.tar.xz";
    hash = "sha256-DlgdyfhxxzVkNIL+NGsQ+PRlNkCuG3v2OahkIEYx60o=";
  };

  installPhase = ''
    runHook preInstall

    mkdir -p $out/share/fonts
    cp Phetsarath_OT.ttf $out/share/fonts

    runHook postInstall
  '';

  meta = with lib; {
    description = "TrueType font for Lao language";
    license = licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ serge ];
    platforms = platforms.all;
  };
}