587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
32 lines
881 B
Nix
32 lines
881 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, icu, catch2_3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nuspell";
|
|
version = "5.1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nuspell";
|
|
repo = "nuspell";
|
|
rev = "v${version}";
|
|
hash = "sha256-KteLH031QP8MunQXsodzsPhD/YN9n3O7b2kb/1mFQRY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ catch2_3 ];
|
|
propagatedBuildInputs = [ icu ];
|
|
|
|
cmakeFlags = [ "-DBUILD_TESTING=YES" ];
|
|
doCheck = true;
|
|
|
|
outputs = [ "out" "lib" "dev" ];
|
|
|
|
meta = with lib; {
|
|
description = "Free and open source C++ spell checking library";
|
|
mainProgram = "nuspell";
|
|
homepage = "https://nuspell.github.io/";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
license = licenses.lgpl3Plus;
|
|
changelog = "https://github.com/nuspell/nuspell/blob/v${version}/CHANGELOG.md";
|
|
};
|
|
}
|