Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / nuspell / default.nix
blob5ef4f676aebc99f5a2a8d0d25cff47bb34d69a78
1 { lib, stdenv, fetchFromGitHub, cmake, pkg-config, icu, catch2 }:
3 stdenv.mkDerivation rec {
4   pname = "nuspell";
5   version = "5.1.3";
7   src = fetchFromGitHub {
8     owner = "nuspell";
9     repo = "nuspell";
10     rev = "v${version}";
11     hash = "sha256-ww7Kqzlnf7065i9RZLeFDUOPBMCVgV/6sBnN0+WvBTk=";
12   };
14   nativeBuildInputs = [ cmake pkg-config ];
15   buildInputs = [ catch2 ];
16   propagatedBuildInputs = [ icu ];
18   cmakeFlags = [ "-DBUILD_TESTING=YES" ];
19   doCheck = true;
21   outputs = [ "out" "lib" "dev" ];
23   meta = with lib; {
24     description = "Free and open source C++ spell checking library";
25     homepage = "https://nuspell.github.io/";
26     platforms = platforms.all;
27     maintainers = with maintainers; [ fpletz ];
28     license = licenses.lgpl3Plus;
29     changelog = "https://github.com/nuspell/nuspell/blob/v${version}/CHANGELOG.md";
30   };