2023-04-12 12:48:02 +00:00
|
|
|
{ lib, stdenv, fetchurl, lzip }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-08-20 17:08:02 +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.
|
|
|
|
|
2023-04-12 12:48:02 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-02-05 17:12:51 +00:00
|
|
|
pname = "ed";
|
2023-02-16 17:41:37 +00:00
|
|
|
version = "1.19";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-02-05 17:12:51 +00:00
|
|
|
url = "mirror://gnu/ed/${pname}-${version}.tar.lz";
|
2023-02-16 17:41:37 +00:00
|
|
|
hash = "sha256-zi8uXEJHkKqW0J2suT2bv9wLfrYknJy3U4RS6Ox3zUg=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ lzip ];
|
|
|
|
|
2023-04-12 12:48:02 +00:00
|
|
|
configureFlags = [
|
|
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An implementation of the standard Unix editor";
|
|
|
|
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-17 00:15:33 +00:00
|
|
|
license = lib.licenses.gpl3Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://www.gnu.org/software/ed/";
|
|
|
|
maintainers = [ ];
|
2021-01-17 00:15:33 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2023-04-12 12:48:02 +00:00
|
|
|
}
|