2008-04-25 18:13:36 +02:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-12-13 00:44:49 +01:00
|
|
|
name = "ed-1.5";
|
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";
|
2011-12-13 00:44:49 +01:00
|
|
|
sha256 = "18gvhyhwpabmgv4lh21lg8vl3z7acdyhh2mr2kj9g75wksj39pcp";
|
2008-04-25 18:13:36 +02:00
|
|
|
};
|
|
|
|
|
2008-10-15 09:26:14 +02:00
|
|
|
doCheck = true;
|
|
|
|
|
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
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
2008-04-25 18:13:36 +02:00
|
|
|
};
|
|
|
|
}
|