Merge pull request #324973 from trofi/nuspell-update

nuspell: 5.1.5 -> 5.1.6
This commit is contained in:
h7x4 2024-07-07 16:50:00 +02:00 committed by GitHub
commit 9f2c9d60f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,17 +1,17 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, icu, catch2_3 }:
{ lib, stdenv, fetchFromGitHub, cmake, pandoc, pkg-config, icu, catch2_3 }:
stdenv.mkDerivation rec {
pname = "nuspell";
version = "5.1.5";
version = "5.1.6";
src = fetchFromGitHub {
owner = "nuspell";
repo = "nuspell";
rev = "v${version}";
hash = "sha256-uE5OkjXawYf9O/SUA/SUaIhDydwGcD460+xO5Yoqa0w=";
hash = "sha256-U/lHSxpKsBnamf4ikE2aIjEPSU5fxjtuSmhZR0jxMAI=";
};
nativeBuildInputs = [ cmake pkg-config ];
nativeBuildInputs = [ cmake pandoc pkg-config ];
buildInputs = [ catch2_3 ];
propagatedBuildInputs = [ icu ];