2014-08-29 12:40:46 +02:00
|
|
|
{ fetchurl, stdenv, lzip }:
|
2008-04-25 18:13:36 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-08-29 12:40:46 +02:00
|
|
|
version = "1.10";
|
|
|
|
name = "ed-${version}";
|
2009-05-24 19:45:43 +02:00
|
|
|
|
2008-04-25 18:13:36 +02:00
|
|
|
src = fetchurl {
|
2014-08-29 12:40:46 +02:00
|
|
|
url = "mirror://gnu/ed/${name}.tar.lz";
|
|
|
|
sha256 = "16kycdm5fcvpdr41hxb2da8da6jzs9dqznsg5552z6rh28n0jh4m";
|
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" ];
|
|
|
|
};
|
|
|
|
|
2014-08-29 12:40:46 +02:00
|
|
|
buildInputs = [ lzip ];
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2008-04-25 18:13:36 +02:00
|
|
|
homepage = http://www.gnu.org/software/ed/;
|
2014-08-29 12:40:46 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
2008-04-25 18:13:36 +02:00
|
|
|
};
|
|
|
|
}
|