base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / tl / tlwg / package.nix
bloba9216ad0d356ceda488bb558408f1d3e32319393
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, autoconf-archive, fontforge }:
3 stdenv.mkDerivation rec {
4   pname = "tlwg";
5   version = "0.7.3";
7   src = fetchFromGitHub {
8     owner = "tlwg";
9     repo = "fonts-tlwg";
10     rev = "v${version}";
11     sha256 = "hWiH5KJnYTdcrm+Kzn9HUQry8ry3SKzjA6/0536kCLQ=";
12   };
14   nativeBuildInputs = [ autoreconfHook autoconf-archive ];
16   buildInputs = [ fontforge ];
18   meta = with lib; {
19     description = "Collection of Thai scalable fonts available under free licenses";
20     homepage = "https://linux.thai.net/projects/fonts-tlwg";
21     license = with licenses; [ gpl2 publicDomain lppl13c free ];
22     maintainers = [ maintainers.yrashk ];
23   };