nixpkgs/pkgs/development/libraries/enchant/2.x.nix
László Vaskó fb0b48d3af enchant: explicitly enable required providers
leaving provider detection to the build process is error-prone, as a
missing or invalid dependency will just result in the derivation being
built without it enabled.

As of now, the nuspell provider is not buildable:

    configure: error: --with-nuspell was given, but test(s) for nuspell failed
2023-03-29 00:17:14 +02:00

63 lines
1.1 KiB
Nix

{ lib, stdenv
, fetchurl
, aspell
, pkg-config
, glib
, hunspell
, hspell
, nuspell
, unittest-cpp
}:
stdenv.mkDerivation rec {
pname = "enchant";
version = "2.3.3";
outputs = [ "out" "dev" ];
src = fetchurl {
url = "https://github.com/AbiWord/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz";
sha256 = "sha256-PaEhA/Ec9Jw88v0s4wF1dcUyGkieW5v6gd2R7EE/OJE=";
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
glib
hunspell
nuspell
];
nativeCheckInputs = [
unittest-cpp
];
# libtool puts these to .la files
propagatedBuildInputs = [
hspell
aspell
];
enableParallelBuilding = true;
doCheck = true;
configureFlags = [
"--enable-relocatable" # needed for tests
"--with-aspell"
"--with-hspell"
"--with-hunspell"
"--with-nuspell"
];
meta = with lib; {
description = "Generic spell checking library";
homepage = "https://abiword.github.io/enchant/";
license = licenses.lgpl21Plus; # with extra provision for non-free checkers
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.unix;
};
}