libthai: init at 0.1.28
This commit is contained in:
parent
6b72fd5c3b
commit
e0e37f4261
27
pkgs/development/libraries/libthai/default.nix
Normal file
27
pkgs/development/libraries/libthai/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchurl, makeWrapper, installShellFiles, pkg-config, libdatrie }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libthai";
|
||||
version = "0.1.28";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/tlwg/libthai/releases/download/v${version}/libthai-${version}.tar.xz";
|
||||
sha256 = "04g93bgxrcnay9fglpq2lj9nr7x1xh06i60m7haip8as9dxs3q7z";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ installShellFiles pkg-config ];
|
||||
|
||||
buildInputs = [ libdatrie ];
|
||||
|
||||
postInstall = ''
|
||||
installManPage man/man3/*.3
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://linux.thai.net/projects/libthai/";
|
||||
description = "Set of Thai language support routines";
|
||||
license = licenses.lgpl21Plus;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
@ -14218,6 +14218,8 @@ in
|
||||
|
||||
libtcod = callPackage ../development/libraries/libtcod { };
|
||||
|
||||
libthai = callPackage ../development/libraries/libthai { };
|
||||
|
||||
libtheora = callPackage ../development/libraries/libtheora { };
|
||||
|
||||
libthreadar = callPackage ../development/libraries/libthreadar { };
|
||||
|
Loading…
Reference in New Issue
Block a user