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
41 lines
865 B
Nix
41 lines
865 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
gettext,
|
|
gawk,
|
|
bash,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "m17n-db";
|
|
version = "1.8.10";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/m17n/${pname}-${version}.tar.gz";
|
|
hash = "sha256-MQJOBRNTNEi5sx6jKU01pkJuZpDrRGKGgHMaqVXAwWw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ gettext ];
|
|
buildInputs = [
|
|
gettext
|
|
gawk
|
|
bash
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
configureFlags = [ "--with-charmaps=${stdenv.cc.libc}/share/i18n/charmaps" ];
|
|
|
|
meta = {
|
|
homepage = "https://www.nongnu.org/m17n/";
|
|
description = "Multilingual text processing library (database)";
|
|
mainProgram = "m17n-db";
|
|
changelog = "https://git.savannah.nongnu.org/cgit/m17n/m17n-db.git/plain/NEWS?h=REL-${
|
|
lib.replaceStrings [ "." ] [ "-" ] version
|
|
}";
|
|
license = lib.licenses.lgpl21Plus;
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|