Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
732 B
Nix
37 lines
732 B
Nix
{
|
|
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;
|
|
};
|
|
}
|