python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libthai / default.nix
blob7755fffc7a97081eb97345dcbbd67130e70901b2
1 { lib, stdenv, fetchurl, makeWrapper, installShellFiles, pkg-config, libdatrie }:
3 stdenv.mkDerivation rec {
4   pname = "libthai";
5   version = "0.1.29";
7   outputs = [ "out" "dev" ];
9   src = fetchurl {
10     url = "https://github.com/tlwg/libthai/releases/download/v${version}/libthai-${version}.tar.xz";
11     sha256 = "sha256-/IDMfctQ4RMCtBfOvSTy0wqLmHKS534AMme5EA0PS80=";
12   };
14   strictDeps = true;
16   nativeBuildInputs = [ installShellFiles (lib.getBin libdatrie) pkg-config ];
18   buildInputs = [ libdatrie ];
20   postInstall = ''
21     installManPage man/man3/*.3
22   '';
24   meta = with lib; {
25     homepage = "https://linux.thai.net/projects/libthai/";
26     description = "Set of Thai language support routines";
27     license = licenses.lgpl21Plus;
28     platforms = platforms.unix;
29     maintainers = with maintainers; [ SuperSandro2000 ];
30   };