mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 22:04:20 +00:00
Merge pull request #266421 from trofi/nuspell-update
This commit is contained in:
commit
8a0e661dd5
@ -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 New Issue
Block a user