2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv
|
2019-09-02 10:11:00 +01:00
|
|
|
, fetchurl
|
|
|
|
, aspell
|
2020-09-12 14:08:04 +01:00
|
|
|
, pkg-config
|
2019-09-02 10:11:00 +01:00
|
|
|
, glib
|
|
|
|
, hunspell
|
|
|
|
, hspell
|
|
|
|
, unittest-cpp
|
|
|
|
}:
|
2018-03-14 13:56:19 +00:00
|
|
|
|
2019-07-01 12:59:35 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-14 13:56:19 +00:00
|
|
|
pname = "enchant";
|
2021-01-18 15:55:34 +00:00
|
|
|
version = "2.2.15";
|
2018-03-14 13:56:19 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-07-01 12:59:35 +01:00
|
|
|
url = "https://github.com/AbiWord/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2021-01-18 15:55:34 +00:00
|
|
|
sha256 = "sha256-Ow8iFVeBFfKOKmqlSbNRKGADlDBL151vKLDTs9b0bAM=";
|
2018-03-14 13:56:19 +00:00
|
|
|
};
|
|
|
|
|
2019-09-02 10:11:00 +01:00
|
|
|
nativeBuildInputs = [
|
2020-09-12 14:08:04 +01:00
|
|
|
pkg-config
|
2019-09-02 10:11:00 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
hunspell
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
unittest-cpp
|
|
|
|
];
|
|
|
|
|
|
|
|
# libtool puts these to .la files
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
hspell
|
|
|
|
aspell
|
|
|
|
];
|
2018-03-14 13:56:19 +00:00
|
|
|
|
2019-07-01 12:59:35 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-09-02 08:25:20 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-relocatable" # needed for tests
|
|
|
|
];
|
2018-04-25 04:20:18 +01:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-03-14 13:56:19 +00:00
|
|
|
description = "Generic spell checking library";
|
2020-02-28 13:57:41 +00:00
|
|
|
homepage = "https://abiword.github.io/enchant/";
|
2018-03-14 13:56:19 +00:00
|
|
|
license = licenses.lgpl21Plus; # with extra provision for non-free checkers
|
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|