waylyrics: 0.3.16 -> 0.3.20 (#364626)
[NixPkgs.git] / pkgs / tools / inputmethods / m17n-lib / default.nix
blob7d5289010daa2bb28f25680d6c30db5291a08ab7
2   lib,
3   stdenv,
4   fetchurl,
5   m17n_db,
6   autoreconfHook,
7   pkg-config,
8 }:
9 stdenv.mkDerivation rec {
10   pname = "m17n-lib";
11   version = "1.8.4";
13   src = fetchurl {
14     url = "https://download.savannah.gnu.org/releases/m17n/m17n-lib-${version}.tar.gz";
15     hash = "sha256-xqJYLG5PKowueihE+lx+s2Oq0lOLBS8gPHEGSd1CHMg=";
16   };
18   strictDeps = true;
20   # reconf needed to sucesfully cross-compile
21   nativeBuildInputs = [
22     autoreconfHook
23     pkg-config
24     # requires m17n-db tool at build time
25     m17n_db
26   ];
28   enableParallelBuilding = true;
30   meta = {
31     homepage = "https://www.nongnu.org/m17n/";
32     description = "Multilingual text processing library (runtime)";
33     license = lib.licenses.lgpl21Plus;
34     platforms = lib.platforms.linux;
35     maintainers = with lib.maintainers; [ astsmtl ];
36   };