be9c58b997
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/edbrowse/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/7jcarzh31rmwvwsahbhq2k74al2x2am2-edbrowse-3.7.4/bin/edbrowse had a zero exit code or showed the expected version - 0 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - found 3.7.4 with grep in /nix/store/7jcarzh31rmwvwsahbhq2k74al2x2am2-edbrowse-3.7.4 - directory tree listing: https://gist.github.com/21b2adbe415a5e475da47207b1f79386 - du listing: https://gist.github.com/e6ec448b581313e4148fb251bcdca067
39 lines
1.5 KiB
Nix
39 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, duktape, curl, pcre, readline, openssl, perl, html-tidy }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "edbrowse-${version}";
|
|
version = "3.7.4";
|
|
|
|
buildInputs = [ curl pcre readline openssl duktape perl html-tidy ];
|
|
|
|
patchPhase = ''
|
|
for i in ./tools/*.pl
|
|
do
|
|
substituteInPlace $i --replace "/usr/bin/perl" "${perl}/bin/perl"
|
|
done
|
|
'';
|
|
|
|
makeFlags = "-C src prefix=$(out)";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CMB";
|
|
repo = "edbrowse";
|
|
rev = "v${version}";
|
|
sha256 = "0i9ivyfy1dd16c89f392kwx6wxgkkpyq2hl32jhzra0fb0zyl0k6";
|
|
};
|
|
meta = with stdenv.lib; {
|
|
description = "Command Line Editor Browser";
|
|
longDescription = ''
|
|
Edbrowse is a combination editor, browser, and mail client that is 100% text based.
|
|
The interface is similar to /bin/ed, though there are many more features, such as editing multiple files simultaneously, and rendering html.
|
|
This program was originally written for blind users, but many sighted users have taken advantage of the unique scripting capabilities of this program, which can be found nowhere else.
|
|
A batch job, or cron job, can access web pages on the internet, submit forms, and send email, with no human intervention whatsoever.
|
|
edbrowse can also tap into databases through odbc. It was primarily written by Karl Dahlke.
|
|
'';
|
|
license = licenses.gpl1Plus;
|
|
homepage = http://edbrowse.org/;
|
|
maintainers = [ maintainers.schmitthenner maintainers.vrthra ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|