d0677e6d45
This adds a warning to the top of each “boot” package that reads: 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. This makes it clear to maintainer that they may need to treat this package a little differently than others. Importantly, we can’t use fetchpatch here due to using <nix/fetchurl.nix>. To avoid having stale hashes, we need to include patches that are subject to changing overtime (for instance, gitweb’s patches contain a version number at the bottom).
49 lines
1.5 KiB
Nix
49 lines
1.5 KiB
Nix
{ stdenv, fetchurl, lzip
|
|
}:
|
|
|
|
# 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.
|
|
|
|
stdenv.mkDerivation (rec {
|
|
name = "ed-${version}";
|
|
version = "1.16";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/ed/${name}.tar.lz";
|
|
sha256 = "0b4b1lwizvng9bvpcjnmpj2i80xz9xw2w8nfff27b2h4mca7mh6g";
|
|
};
|
|
|
|
nativeBuildInputs = [ lzip ];
|
|
|
|
doCheck = true; # not cross;
|
|
|
|
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.
|
|
'';
|
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
|
|
homepage = "https://www.gnu.org/software/ed/";
|
|
|
|
maintainers = [ ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
} // stdenv.lib.optionalAttrs (stdenv.hostPlatform != stdenv.buildPlatform) {
|
|
# This may be moved above during a stdenv rebuild.
|
|
preConfigure = ''
|
|
configureFlagsArray+=("CC=$CC")
|
|
'';
|
|
})
|