From 07acd3e407932d413a2c0d8f33fe723cce0714ee Mon Sep 17 00:00:00 2001 From: Daniel Nagy Date: Tue, 4 Oct 2022 20:05:36 +0200 Subject: [PATCH] nuspell: 5.0.1 -> 5.1.2 --- pkgs/development/libraries/nuspell/default.nix | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/pkgs/development/libraries/nuspell/default.nix b/pkgs/development/libraries/nuspell/default.nix index a9e0bb4ea68f..1bd3cefbee32 100644 --- a/pkgs/development/libraries/nuspell/default.nix +++ b/pkgs/development/libraries/nuspell/default.nix @@ -1,35 +1,32 @@ -{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, icu, catch2, pandoc }: +{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, icu, catch2 }: stdenv.mkDerivation rec { pname = "nuspell"; - version = "5.0.1"; + version = "5.1.2"; src = fetchFromGitHub { owner = "nuspell"; repo = "nuspell"; rev = "v${version}"; - sha256 = "sha256-ogA7ycqdMUTN/KHV2oZzytnhZ7XVuhx+ArXZqLlmwjk="; + sha256 = "sha256-nGC8Um9GutJZXlUcUCK0IiHxMaZmeoe4febw/jC2dRU="; }; - nativeBuildInputs = [ cmake pkg-config pandoc ]; + nativeBuildInputs = [ cmake pkg-config ]; buildInputs = [ icu ]; - outputs = [ "out" "lib" "dev" "man" ]; + outputs = [ "out" "lib" "dev" ]; postPatch = '' rm -rf external/Catch2 ln -sf ${catch2.src} external/Catch2 ''; - postInstall = '' - rm -rf $out/share/doc - ''; - meta = with lib; { description = "Free and open source C++ spell checking library"; homepage = "https://nuspell.github.io/"; platforms = platforms.all; maintainers = with maintainers; [ fpletz ]; license = licenses.lgpl3Plus; + changelog = "https://github.com/nuspell/nuspell/blob/v${version}/CHANGELOG.md"; }; }