Merge pull request #266421 from trofi/nuspell-update

This commit is contained in:
Franz Pletz 2023-11-14 10:03:33 +01:00 committed by GitHub
commit 8a0e661dd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,18 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, icu, catch2 }:
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, icu, catch2_3 }:
stdenv.mkDerivation rec {
pname = "nuspell";
version = "5.1.3";
version = "5.1.4";
src = fetchFromGitHub {
owner = "nuspell";
repo = "nuspell";
rev = "v${version}";
hash = "sha256-ww7Kqzlnf7065i9RZLeFDUOPBMCVgV/6sBnN0+WvBTk=";
hash = "sha256-KteLH031QP8MunQXsodzsPhD/YN9n3O7b2kb/1mFQRY=";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ catch2 ];
buildInputs = [ catch2_3 ];
propagatedBuildInputs = [ icu ];
cmakeFlags = [ "-DBUILD_TESTING=YES" ];