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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
848 B
Nix
Raw Normal View History

2022-10-04 18:05:36 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, icu, catch2 }:
2019-02-03 12:08:43 +00:00
stdenv.mkDerivation rec {
pname = "nuspell";
version = "5.1.3";
2019-02-03 12:08:43 +00:00
src = fetchFromGitHub {
owner = "nuspell";
repo = "nuspell";
rev = "v${version}";
hash = "sha256-ww7Kqzlnf7065i9RZLeFDUOPBMCVgV/6sBnN0+WvBTk=";
2019-02-03 12:08:43 +00:00
};
2022-10-04 18:05:36 +00:00
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ catch2 ];
propagatedBuildInputs = [ icu ];
2019-02-03 12:08:43 +00:00
cmakeFlags = [ "-DBUILD_TESTING=YES" ];
doCheck = true;
2019-08-12 17:51:58 +00:00
outputs = [ "out" "lib" "dev" ];
2019-02-03 12:08:43 +00:00
meta = with lib; {
2019-02-03 12:08:43 +00:00
description = "Free and open source C++ spell checking library";
homepage = "https://nuspell.github.io/";
2020-12-20 04:20:00 +00:00
platforms = platforms.all;
2019-02-03 12:08:43 +00:00
maintainers = with maintainers; [ fpletz ];
license = licenses.lgpl3Plus;
2022-10-04 18:05:36 +00:00
changelog = "https://github.com/nuspell/nuspell/blob/v${version}/CHANGELOG.md";
2019-02-03 12:08:43 +00:00
};
}