blob: 964194228b348afba2ae56e7ca2a2a86be8401b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
stdenv,
fetchurl,
m17n_db,
autoreconfHook,
pkg-config,
}:
stdenv.mkDerivation rec {
pname = "m17n-lib";
version = "1.8.6";
src = fetchurl {
url = "mirror://savannah/m17n/${pname}-${version}.tar.gz";
hash = "sha256-cSn+O3rVAPiLivhgXvB7lsh6deyYamlf/8CkCfRKfIY=";
};
strictDeps = true;
# reconf needed to successfully cross-compile
nativeBuildInputs = [
autoreconfHook
pkg-config
# requires m17n-db tool at build time
m17n_db
];
enableParallelBuilding = true;
meta = {
homepage = "https://www.nongnu.org/m17n/";
description = "Multilingual text processing library (runtime)";
license = lib.licenses.lgpl21Plus;
platforms = lib.platforms.linux;
};
}
|