nuspell: init at 2.1.0

This commit is contained in:
Franz Pletz
2019-02-03 13:24:31 +01:00
parent 96881a6c1d
commit 5b1ed0c62f
3 changed files with 45 additions and 0 deletions
@@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, boost, icu, catch2 }:
stdenv.mkDerivation rec {
name = "nuspell-${version}";
version = "2.1.0";
src = fetchFromGitHub {
owner = "nuspell";
repo = "nuspell";
rev = "v${version}";
sha256 = "0gcw3p1agnx474r7kv27y9jyab20p4j4xx7j9a2yssg54qabm71j";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ boost icu ];
enableParallelBuilding = true;
preBuild = ''
ln -s ${catch2}/include/catch2/*.hpp tests/
'';
meta = with stdenv.lib; {
description = "Free and open source C++ spell checking library";
homepage = "https://nuspell.github.io/";
maintainers = with maintainers; [ fpletz ];
};
}
@@ -0,0 +1,13 @@
{ stdenv, lib, nuspell, makeWrapper, dicts ? [] }:
with lib;
let
searchPath = makeSearchPath "share/hunspell" dicts;
in
stdenv.mkDerivation {
name = (appendToName "with-dicts" nuspell).name;
buildInputs = [ makeWrapper ];
buildCommand = ''
makeWrapper ${nuspell}/bin/nuspell $out/bin/nuspell --prefix DICPATH : ${searchPath}
'';
meta = removeAttrs nuspell.meta ["outputsToInstall"];
}