2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv, fetchurl, lzip
|
2017-06-03 15:21:03 +00:00
|
|
|
}:
|
2008-04-25 16:13:36 +00:00
|
|
|
|
2020-06-26 20:44:45 +00: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 17:45:43 +00:00
|
|
|
|
2008-04-25 16:13:36 +00:00
|
|
|
src = fetchurl {
|
2017-08-27 18:29:52 +00:00
|
|
|
url = "mirror://gnu/ed/${name}.tar.lz";
|
2020-02-23 10:50:05 +00:00
|
|
|
sha256 = "0b4b1lwizvng9bvpcjnmpj2i80xz9xw2w8nfff27b2h4mca7mh6g";
|
2008-04-25 16:13:36 +00:00
|
|
|
};
|
|
|
|
|
2017-08-27 18:29:52 +00:00
|
|
|
nativeBuildInputs = [ lzip ];
|
|
|
|
|
2018-01-08 07:19:47 +00:00
|
|
|
doCheck = true; # not cross;
|
2008-10-15 07:26:14 +00:00
|
|
|
|
2008-04-25 16:13:36 +00:00
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "An implementation of the standard Unix editor";
|
2008-04-25 16:13:36 +00: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.
|
|
|
|
'';
|
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.gpl3Plus;
|
2014-08-30 20:41:01 +00:00
|
|
|
|
2020-02-23 10:50:05 +00:00
|
|
|
homepage = "https://www.gnu.org/software/ed/";
|
2014-08-30 20:41:01 +00:00
|
|
|
|
|
|
|
maintainers = [ ];
|
2021-01-15 13:21:58 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2008-04-25 16:13:36 +00:00
|
|
|
};
|
2021-01-15 13:21:58 +00:00
|
|
|
} // 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")
|
|
|
|
'';
|
|
|
|
})
|