1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/nuspell/default.nix

37 lines
845 B
Nix
Raw Normal View History

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 {
pname = "nuspell";
version = "4.0.0";
2019-02-03 12:08:43 +00:00
src = fetchFromGitHub {
owner = "nuspell";
repo = "nuspell";
rev = "v${version}";
sha256 = "1jfnwva2i67i9pyh123a5h2zs5p7gw77qh4w7qkx61jigsyxc5v7";
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 ];
license = licenses.lgpl3Plus;
2019-02-03 12:08:43 +00:00
};
}