summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/m17n-lib/default.nix
blob: a4c9006cb24b13d058d15eaed80c9c72366a3537 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, m17n_db}:
stdenv.mkDerivation rec {
  name = "m17n-lib-1.8.0";

  src = fetchurl {
    url = "http://download.savannah.gnu.org/releases/m17n/${name}.tar.gz";
    sha256 = "0jp61y09xqj10mclpip48qlfhniw8gwy8b28cbzxy8hq8pkwmfkq";
  };

  buildInputs = [ m17n_db ];

  meta = {
    homepage = https://www.nongnu.org/m17n/;
    description = "Multilingual text processing library (runtime)";
    license = stdenv.lib.licenses.lgpl21Plus;
    platforms = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ astsmtl ];
  };
}