Unverified Commit 0533c624 authored by Matthias Beyer's avatar Matthias Beyer Committed by GitHub
Browse files

Merge pull request #243694 from toastal/sarabun-font

sarabun-font: init at unstable-2018-08-24
parents 52d8a64d eee12c67
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "sarabun";
  version = "unstable-2018-08-24";

  src = fetchFromGitHub {
    owner = "cadsondemak";
    repo = pname;
    rev = "854cdbc6afa002ff8c2ce6aa7b86f99c7f71c9eb";
    sha256 = "jcSQ72WK0GucZPgG7IQKrKzCOEbGgbQVl21RIKSF6A0=";
  };

  outputs = [ "out" "doc" ];

  buildPhase = ''
    mkdir -p $doc/${pname} $out/share/fonts/truetype

    cp -r $src/OFL.txt $src/docs/* $doc/${pname}
    cp $src/fonts/*.ttf $out/share/fonts/truetype
  '';

  meta = {
    homepage = "https://cadsondemak.github.io/${pname}/";
    description = "A slightly-condensed looped Thai and sans serif Latin typeface for communications";
    longDescription = ''
      The most popular typeface from the 13 fonts from SIPA Thailand’s National
      fonts project. Sarabun was designed by Suppakit Chalermlarp to be a
      serious text face. Great choice for a long reading formal text. This font
      was selected by the royal Thai government to be the official typeface for
      documentation purpose. It was also adopted by many private organizations
      to be used as a communication font. Sarabun has a slightly condensed
      proportion which fits perfectly with Thai legibility. It also carries a
      neutral Thai traditional loop design which can easily fit in with any
      occasion. Probably one of the most today’s familiar Thai loop typefaces.
    '';
    license = lib.licenses.ofl;
    platforms = lib.platforms.all;
    maintainers = with lib.maintainers; [ toastal ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -29811,6 +29811,8 @@ with pkgs;
  sampradaya = callPackage ../data/fonts/sampradaya { };
  sarabun-font = callPackage ../data/fonts/sarabun { };
  sarasa-gothic = callPackage ../data/fonts/sarasa-gothic { };
  savepagenow = callPackage ../tools/misc/savepagenow { };