html2text: 2.2.3 -> 2.3.0

Changed files
+8 -4
pkgs
by-name
+2 -2
pkgs/by-name/ht/html2text/gettext-0.25.patch
···
bin_PROGRAMS = html2text
diff --git a/configure.ac b/configure.ac
-
index af3ce8e..a80d1fd 100644
+
index 999c6fe..30c2536 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,8 +15,11 @@
AC_PREREQ([2.71])
-
AC_INIT([html2text], [2.2.3], [BUG-REPORT-ADDRESS])
+
AC_INIT([html2text], [2.3.0], [BUG-REPORT-ADDRESS])
+AC_CONFIG_MACRO_DIRS([m4])
AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE([disable])
+6 -2
pkgs/by-name/ht/html2text/package.nix
···
lib,
stdenv,
fetchFromGitLab,
+
autoconf-archive,
autoreconfHook,
+
bison,
gettext,
libiconv,
}:
stdenv.mkDerivation rec {
pname = "html2text";
-
version = "2.2.3";
+
version = "2.3.0";
src = fetchFromGitLab {
owner = "grobian";
repo = "html2text";
rev = "v${version}";
-
hash = "sha256-7Ch51nJ5BeRqs4PEIPnjCGk+Nm2ydgJQCtkcpihXun8=";
+
hash = "sha256-e/KWyc7lOdWhtFC7ZAD7sYgCsO3JzGkLUThVI7edqIQ=";
};
nativeBuildInputs = [
+
autoconf-archive
autoreconfHook
+
bison
gettext
];