Loading pkgs/tools/text/html2text/default.nix +10 −21 Original line number Diff line number Diff line { lib, stdenv, fetchurl }: { lib, stdenv, fetchFromGitLab, autoreconfHook, libiconv }: stdenv.mkDerivation rec { pname = "html2text"; version = "1.3.2a"; version = "2.2.3"; src = fetchurl { url = "http://www.mbayer.de/html2text/downloads/html2text-${version}.tar.gz"; sha256 = "000b39d5d910b867ff7e087177b470a1e26e2819920dcffd5991c33f6d480392"; src = fetchFromGitLab { owner = "grobian"; repo = "html2text"; rev = "v${version}"; hash = "sha256-7Ch51nJ5BeRqs4PEIPnjCGk+Nm2ydgJQCtkcpihXun8="; }; preConfigure = '' substituteInPlace configure \ --replace /bin/echo echo \ --replace CXX=unknown ':' '' + lib.optionalString stdenv.cc.isClang '' substituteInPlace HTMLParser.C \ --replace "register " "" ''; nativeBuildInputs = [ autoreconfHook ]; # 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 ''; buildInputs = lib.optional stdenv.isDarwin libiconv; meta = { description = "Convert HTML to plain text"; mainProgram = "html2text"; homepage = "http://www.mbayer.de/html2text/"; homepage = "https://gitlab.com/grobian/html2text"; license = lib.licenses.gpl2Plus; platforms = lib.platforms.unix; maintainers = [ lib.maintainers.eikek ]; Loading Loading
pkgs/tools/text/html2text/default.nix +10 −21 Original line number Diff line number Diff line { lib, stdenv, fetchurl }: { lib, stdenv, fetchFromGitLab, autoreconfHook, libiconv }: stdenv.mkDerivation rec { pname = "html2text"; version = "1.3.2a"; version = "2.2.3"; src = fetchurl { url = "http://www.mbayer.de/html2text/downloads/html2text-${version}.tar.gz"; sha256 = "000b39d5d910b867ff7e087177b470a1e26e2819920dcffd5991c33f6d480392"; src = fetchFromGitLab { owner = "grobian"; repo = "html2text"; rev = "v${version}"; hash = "sha256-7Ch51nJ5BeRqs4PEIPnjCGk+Nm2ydgJQCtkcpihXun8="; }; preConfigure = '' substituteInPlace configure \ --replace /bin/echo echo \ --replace CXX=unknown ':' '' + lib.optionalString stdenv.cc.isClang '' substituteInPlace HTMLParser.C \ --replace "register " "" ''; nativeBuildInputs = [ autoreconfHook ]; # 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 ''; buildInputs = lib.optional stdenv.isDarwin libiconv; meta = { description = "Convert HTML to plain text"; mainProgram = "html2text"; homepage = "http://www.mbayer.de/html2text/"; homepage = "https://gitlab.com/grobian/html2text"; license = lib.licenses.gpl2Plus; platforms = lib.platforms.unix; maintainers = [ lib.maintainers.eikek ]; Loading