mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
tlwg: init at 0.6.4 (#32133)
A collection of Thai scalable fonts available under free licenses
This commit is contained in:
parent
ec622a9b38
commit
3314e18a39
27
pkgs/data/fonts/tlwg/default.nix
Normal file
27
pkgs/data/fonts/tlwg/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, fontforge }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "tlwg-${version}";
|
||||
version = "0.6.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tlwg";
|
||||
repo = "fonts-tlwg";
|
||||
rev = "v${version}";
|
||||
sha256 = "13bx98ygyyizb15ybdv3856lkxhx1fss8f7aiqmp0lk9zgw4mqyk";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
buildInputs = [ fontforge ];
|
||||
|
||||
preAutoreconf = "echo ${version} > VERSION";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A collection of Thai scalable fonts available under free licenses";
|
||||
homepage = https://linux.thai.net/projects/fonts-tlwg;
|
||||
license = with licenses; [ gpl2 publicDomain lppl13c free ];
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.yrashk ];
|
||||
};
|
||||
}
|
@ -20039,4 +20039,6 @@ with pkgs;
|
||||
};
|
||||
|
||||
wal-g = callPackage ../tools/backup/wal-g {};
|
||||
|
||||
tlwg = callPackage ../data/fonts/tlwg { };
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user