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:
parent
a0eb0aa889
commit
4d7c82abab
|
@ -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" ];
|
||||
|
|
Loading…
Reference in a new issue