nixpkgs/pkgs/tools/text/html2text/default.nix

33 lines
826 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl }:
2014-11-06 21:37:53 +00:00
stdenv.mkDerivation {
name = "html2text-1.3.2a";
src = fetchurl {
url = "http://www.mbayer.de/html2text/downloads/html2text-1.3.2a.tar.gz";
2014-11-06 21:37:53 +00:00
sha256 = "000b39d5d910b867ff7e087177b470a1e26e2819920dcffd5991c33f6d480392";
};
preConfigure = ''
2017-09-11 21:40:46 +00:00
substituteInPlace configure \
--replace /bin/echo echo \
--replace CXX=unknown ':'
2014-11-06 21:37:53 +00:00
'';
# the --prefix has no effect
installPhase = ''
mkdir -p $out/bin $out/man/man{1,5}
cp html2text $out/bin
cp html2text.1.gz $out/man/man1
cp html2textrc.5.gz $out/man/man5
'';
meta = {
description = "Convert HTML to plain text";
homepage = "http://www.mbayer.de/html2text/";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.eikek ];
2014-11-06 21:37:53 +00:00
};
}