2008-04-25 18:13:36 +02:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-12-12 17:17:05 +01:00
|
|
|
name = "ed-1.7";
|
2009-05-24 19:45:43 +02:00
|
|
|
|
2008-04-25 18:13:36 +02:00
|
|
|
src = fetchurl {
|
2009-02-01 19:53:25 +01:00
|
|
|
url = "mirror://gnu/ed/${name}.tar.gz";
|
2012-12-12 17:17:05 +01:00
|
|
|
sha256 = "0c908wb5pm48rjrrfbm5dhrqzys8f1dbvi90dn0vgwjzk80l2hl9";
|
2008-04-25 18:13:36 +02:00
|
|
|
};
|
|
|
|
|
2012-12-03 15:25:14 +01: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
|
|
|
|
|
|
|
|
*/
|
|
|
|
doCheck = !stdenv.isDarwin;
|
2008-10-15 09:26:14 +02:00
|
|
|
|
2010-04-04 20:10:42 +02:00
|
|
|
crossAttrs = {
|
|
|
|
compileFlags = [ "CC=${stdenv.cross.config}-gcc" ];
|
|
|
|
};
|
|
|
|
|
2008-04-25 18:13:36 +02:00
|
|
|
meta = {
|
2008-04-25 18:14:49 +02:00
|
|
|
description = "GNU ed, an implementation of the standard Unix editor";
|
2008-04-25 18:13:36 +02: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.
|
|
|
|
'';
|
|
|
|
|
|
|
|
license = "GPLv3+";
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/ed/;
|
2009-07-14 23:59:16 +02:00
|
|
|
|
2013-08-16 23:44:33 +02:00
|
|
|
maintainers = [ ];
|
2008-04-25 18:13:36 +02:00
|
|
|
};
|
|
|
|
}
|