nixpkgs/pkgs/development/libraries/nuspell/default.nix

36 lines
811 B
Nix
Raw Normal View History

2019-08-12 17:51:58 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, boost, icu, catch2, ronn }:
2019-02-03 12:08:43 +00:00
stdenv.mkDerivation rec {
pname = "nuspell";
2020-07-02 15:29:06 +00:00
version = "3.1.2";
2019-02-03 12:08:43 +00:00
src = fetchFromGitHub {
owner = "nuspell";
repo = "nuspell";
rev = "v${version}";
2020-07-02 15:29:06 +00:00
sha256 = "0wbb6dwmzlsyy224y0liis0azgzwbjdvcyzc31pw1aw6vbp36na6";
2019-02-03 12:08:43 +00:00
};
2019-08-12 17:51:58 +00:00
nativeBuildInputs = [ cmake pkgconfig ronn ];
2019-02-03 12:08:43 +00:00
buildInputs = [ boost icu ];
2019-08-12 17:51:58 +00:00
outputs = [ "out" "lib" "dev" "man" ];
2019-02-03 12:08:43 +00:00
enableParallelBuilding = true;
2019-04-02 08:03:58 +00:00
postPatch = ''
rm -rf external/Catch2
ln -sf ${catch2.src} external/Catch2
2019-02-03 12:08:43 +00:00
'';
2019-08-12 17:51:58 +00: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 ];
};
}