nixpkgs/pkgs/development/libraries/libthai/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
839 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, installShellFiles, pkg-config, libdatrie }:
2020-10-29 17:06:48 +00:00
stdenv.mkDerivation rec {
pname = "libthai";
2021-12-30 19:23:33 +00:00
version = "0.1.29";
2020-10-29 17:06:48 +00:00
2021-02-16 19:59:59 +00:00
outputs = [ "out" "dev" ];
2020-10-29 17:06:48 +00:00
src = fetchurl {
url = "https://github.com/tlwg/libthai/releases/download/v${version}/libthai-${version}.tar.xz";
2021-12-30 19:23:33 +00:00
sha256 = "sha256-/IDMfctQ4RMCtBfOvSTy0wqLmHKS534AMme5EA0PS80=";
2020-10-29 17:06:48 +00:00
};
strictDeps = true;
2021-02-16 19:59:59 +00:00
nativeBuildInputs = [ installShellFiles (lib.getBin libdatrie) pkg-config ];
2020-10-29 17:06:48 +00:00
buildInputs = [ libdatrie ];
postInstall = ''
installManPage man/man3/*.3
'';
meta = with lib; {
2020-10-29 17:06:48 +00:00
homepage = "https://linux.thai.net/projects/libthai/";
description = "Set of Thai language support routines";
license = licenses.lgpl21Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}