2022-11-04T02:06:24 enchant 2.3.2 -> 2.3.3 https://repology.org/metapackage/enchant/versions 2022-11-04T02:06:27 attrpath: enchant 2022-11-04T02:06:27 Checking auto update branch... 2022-11-04T02:06:27 No auto update branch exists 2022-11-04T02:06:27 Old version 2.3.2" not present in master derivation file with contents: { lib, stdenv , fetchurl , aspell , pkg-config , glib , hunspell , hspell , nuspell , unittest-cpp }: stdenv.mkDerivation rec { pname = "enchant"; version = "2.3.3"; outputs = [ "out" "dev" ]; src = fetchurl { url = "https://github.com/AbiWord/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz"; sha256 = "sha256-PaEhA/Ec9Jw88v0s4wF1dcUyGkieW5v6gd2R7EE/OJE="; }; nativeBuildInputs = [ pkg-config ]; buildInputs = [ glib hunspell nuspell ]; checkInputs = [ unittest-cpp ]; # libtool puts these to .la files propagatedBuildInputs = [ hspell aspell ]; enableParallelBuilding = true; doCheck = true; configureFlags = [ "--enable-relocatable" # needed for tests ]; meta = with lib; { description = "Generic spell checking library"; homepage = "https://abiword.github.io/enchant/"; license = licenses.lgpl21Plus; # with extra provision for non-free checkers maintainers = with maintainers; [ jtojnar ]; platforms = platforms.unix; }; }