2017-08-27 19:29:52 +01:00
|
|
|
{ stdenv, fetchurl, lzip
|
2017-06-03 16:21:03 +01:00
|
|
|
}:
|
2008-04-25 17:13:36 +01:00
|
|
|
|
2017-12-08 21:33:53 +00:00
|
|
|
stdenv.mkDerivation (rec {
|
2017-01-13 10:53:56 +00:00
|
|
|
name = "ed-${version}";
|
2017-08-27 19:29:52 +01:00
|
|
|
version = "1.14.2";
|
2009-05-24 18:45:43 +01:00
|
|
|
|
2008-04-25 17:13:36 +01:00
|
|
|
src = fetchurl {
|
2017-08-27 19:29:52 +01:00
|
|
|
url = "mirror://gnu/ed/${name}.tar.lz";
|
|
|
|
sha256 = "1nqhk3n1s1p77g2bjnj55acicsrlyb2yasqxqwpx0w0djfx64ygm";
|
2008-04-25 17:13:36 +01:00
|
|
|
};
|
|
|
|
|
2017-08-27 19:29:52 +01:00
|
|
|
nativeBuildInputs = [ lzip ];
|
|
|
|
|
2018-01-08 07:19:47 +00:00
|
|
|
doCheck = true; # not cross;
|
2008-10-15 08:26:14 +01:00
|
|
|
|
2008-04-25 17:13:36 +01:00
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "An implementation of the standard Unix editor";
|
2008-04-25 17:13:36 +01: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 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2014-08-30 21:41:01 +01:00
|
|
|
|
2008-04-25 17:13:36 +01:00
|
|
|
homepage = http://www.gnu.org/software/ed/;
|
2014-08-30 21:41:01 +01:00
|
|
|
|
|
|
|
maintainers = [ ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-04-25 17:13:36 +01:00
|
|
|
};
|
2018-08-20 19:43:41 +01:00
|
|
|
} // stdenv.lib.optionalAttrs (stdenv.hostPlatform != stdenv.buildPlatform) {
|
2017-12-08 21:33:53 +00:00
|
|
|
# This may be moved above during a stdenv rebuild.
|
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray+=("CC=$CC")
|
|
|
|
'';
|
|
|
|
})
|