1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 12:11:28 +00:00

nuspell: 5.1.3 -> 5.1.4

Changes: https://github.com/nuspell/nuspell/releases/tag/v5.1.4
This commit is contained in:
Sergei Trofimovich 2023-11-09 08:15:46 +00:00
parent a0eb0aa889
commit 4d7c82abab

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" ];