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
|
|
|
|
2020-06-26 21:44:45 +01:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2017-12-08 21:33:53 +00:00
|
|
|
stdenv.mkDerivation (rec {
|
2017-01-13 10:53:56 +00:00
|
|
|
name = "ed-${version}";
|
2020-02-23 10:50:05 +00:00
|
|
|
version = "1.16";
|
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";
|
2020-02-23 10:50:05 +00:00
|
|
|
sha256 = "0b4b1lwizvng9bvpcjnmpj2i80xz9xw2w8nfff27b2h4mca7mh6g";
|
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
|
|
|
|
2020-02-23 10:50:05 +00:00
|
|
|
homepage = "https://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")
|
|
|
|
'';
|
|
|
|
})
|