2019-08-12 18:51:58 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, boost, icu, catch2, ronn }:
|
2019-02-03 12:08:43 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "nuspell";
|
2019-08-12 18:51:58 +01:00
|
|
|
version = "2.3.0";
|
2019-02-03 12:08:43 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nuspell";
|
|
|
|
repo = "nuspell";
|
|
|
|
rev = "v${version}";
|
2019-08-12 18:51:58 +01:00
|
|
|
sha256 = "0n5cajrp1fhk8p54ch3akkd9nl8b9c6wwf25980dhagcdys3vab3";
|
2019-02-03 12:08:43 +00:00
|
|
|
};
|
|
|
|
|
2019-08-12 18:51:58 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ronn ];
|
2019-02-03 12:08:43 +00:00
|
|
|
buildInputs = [ boost icu ];
|
|
|
|
|
2019-08-12 18:51:58 +01:00
|
|
|
outputs = [ "out" "lib" "dev" "man" ];
|
|
|
|
|
2019-02-03 12:08:43 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-04-02 09:03:58 +01:00
|
|
|
postPatch = ''
|
|
|
|
rm -rf external/Catch2
|
|
|
|
ln -sf ${catch2.src} external/Catch2
|
2019-02-03 12:08:43 +00:00
|
|
|
'';
|
|
|
|
|
2019-08-12 18:51:58 +01:00
|
|
|
postInstall = ''
|
|
|
|
rm -rf $out/share/doc
|
|
|
|
'';
|
|
|
|
|
2019-02-03 12:08:43 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Free and open source C++ spell checking library";
|
|
|
|
homepage = "https://nuspell.github.io/";
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
};
|
|
|
|
}
|