Merge pull request #195212 from nagy/nuspell-512

authored by Franz Pletz and committed by GitHub 2c874bf5 50d21e56

+6 -9
+6 -9
pkgs/development/libraries/nuspell/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkg-config, icu, catch2, pandoc }: 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, icu, catch2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "nuspell"; 5 - version = "5.0.1"; 5 + version = "5.1.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "nuspell"; 9 9 repo = "nuspell"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ogA7ycqdMUTN/KHV2oZzytnhZ7XVuhx+ArXZqLlmwjk="; 11 + sha256 = "sha256-nGC8Um9GutJZXlUcUCK0IiHxMaZmeoe4febw/jC2dRU="; 12 12 }; 13 13 14 - nativeBuildInputs = [ cmake pkg-config pandoc ]; 14 + nativeBuildInputs = [ cmake pkg-config ]; 15 15 buildInputs = [ icu ]; 16 16 17 - outputs = [ "out" "lib" "dev" "man" ]; 17 + outputs = [ "out" "lib" "dev" ]; 18 18 19 19 postPatch = '' 20 20 rm -rf external/Catch2 21 21 ln -sf ${catch2.src} external/Catch2 22 22 ''; 23 23 24 - postInstall = '' 25 - rm -rf $out/share/doc 26 - ''; 27 - 28 24 meta = with lib; { 29 25 description = "Free and open source C++ spell checking library"; 30 26 homepage = "https://nuspell.github.io/"; 31 27 platforms = platforms.all; 32 28 maintainers = with maintainers; [ fpletz ]; 33 29 license = licenses.lgpl3Plus; 30 + changelog = "https://github.com/nuspell/nuspell/blob/v${version}/CHANGELOG.md"; 34 31 }; 35 32 }