2017-08-27 11:29:52 -07:00
|
|
|
{ stdenv, fetchurl, lzip
|
2017-06-03 08:21:03 -07:00
|
|
|
, buildPlatform, hostPlatform
|
|
|
|
}:
|
2008-04-25 09:13:36 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-01-13 02:53:56 -08:00
|
|
|
name = "ed-${version}";
|
2017-08-27 11:29:52 -07:00
|
|
|
version = "1.14.2";
|
2009-05-24 10:45:43 -07:00
|
|
|
|
2008-04-25 09:13:36 -07:00
|
|
|
src = fetchurl {
|
2017-08-27 11:29:52 -07:00
|
|
|
url = "mirror://gnu/ed/${name}.tar.lz";
|
|
|
|
sha256 = "1nqhk3n1s1p77g2bjnj55acicsrlyb2yasqxqwpx0w0djfx64ygm";
|
2008-04-25 09:13:36 -07:00
|
|
|
};
|
|
|
|
|
2017-08-27 11:29:52 -07:00
|
|
|
unpackCmd = "tar --lzip -xf";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ lzip ];
|
|
|
|
|
2012-12-03 06:25:14 -08:00
|
|
|
/* FIXME: Tests currently fail on Darwin:
|
|
|
|
|
|
|
|
building test scripts for ed-1.5...
|
|
|
|
testing ed-1.5...
|
|
|
|
*** Output e1.o of script e1.ed is incorrect ***
|
|
|
|
*** Output r3.o of script r3.ed is incorrect ***
|
|
|
|
make: *** [check] Error 127
|
|
|
|
|
|
|
|
*/
|
2017-06-03 08:21:03 -07:00
|
|
|
doCheck = !(hostPlatform.isDarwin || hostPlatform != buildPlatform);
|
2008-10-15 00:26:14 -07:00
|
|
|
|
2017-08-27 11:29:52 -07:00
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
2017-06-23 14:45:27 -07:00
|
|
|
|
|
|
|
configureFlags = [
|
2017-11-25 10:43:57 -08:00
|
|
|
"--exec-prefix=${stdenv.cc.targetPrefix}"
|
|
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
2017-06-03 08:21:03 -07:00
|
|
|
];
|
2010-04-04 11:10:42 -07:00
|
|
|
|
2008-04-25 09:13:36 -07:00
|
|
|
meta = {
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "An implementation of the standard Unix editor";
|
2008-04-25 09:13:36 -07:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GNU ed is a line-oriented text editor. It is used to create,
|
|
|
|
display, modify and otherwise manipulate text files, both
|
|
|
|
interactively and via shell scripts. A restricted version of ed,
|
|
|
|
red, can only edit files in the current directory and cannot
|
|
|
|
execute shell commands. Ed is the "standard" text editor in the
|
|
|
|
sense that it is the original editor for Unix, and thus widely
|
|
|
|
available. For most purposes, however, it is superseded by
|
|
|
|
full-screen editors such as GNU Emacs or GNU Moe.
|
|
|
|
'';
|
|
|
|
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2014-08-30 13:41:01 -07:00
|
|
|
|
2008-04-25 09:13:36 -07:00
|
|
|
homepage = http://www.gnu.org/software/ed/;
|
2014-08-30 13:41:01 -07:00
|
|
|
|
|
|
|
maintainers = [ ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-04-25 09:13:36 -07:00
|
|
|
};
|
|
|
|
}
|