forked from mirrors/nixpkgs
c9baba9212
(My OCD kicked in today...) Remove repeated package names, capitalize first word, remove trailing periods and move overlong descriptions to longDescription. I also simplified some descriptions as well, when they were particularly long or technical, often based on Arch Linux' package descriptions. I've tried to stay away from generated expressions (and I think I succeeded). Some specifics worth mentioning: * cron, has "Vixie Cron" in its description. The "Vixie" part is not mentioned anywhere else. I kept it in a parenthesis at the end of the description. * ctags description started with "Exuberant Ctags ...", and the "exuberant" part is not mentioned elsewhere. Kept it in a parenthesis at the end of description. * nix has the description "The Nix Deployment System". Since that doesn't really say much what it is/does (especially after removing the package name!), I changed that to "Powerful package manager that makes package management reliable and reproducible" (borrowed from nixos.org). * Tons of "GNU Foo, Foo is a [the important bits]" descriptions is changed to just [the important bits]. If the package name doesn't contain GNU I don't think it's needed to say it in the description either.
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ fetchurl, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ed-1.9";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/ed/${name}.tar.gz";
|
|
sha256 = "122syihsx2hwzj75mkf5a9ssiky2xby748kp4cc00wzhmp7p5cym";
|
|
};
|
|
|
|
/* FIXME: Tests currently fail on Darwin:
|
|
|
|
building test scripts for ed-1.5...
|
|
testing ed-1.5...
|
|
*** Output e1.o of script e1.ed is incorrect ***
|
|
*** Output r3.o of script r3.ed is incorrect ***
|
|
make: *** [check] Error 127
|
|
|
|
*/
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
crossAttrs = {
|
|
compileFlags = [ "CC=${stdenv.cross.config}-gcc" ];
|
|
};
|
|
|
|
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 = http://www.gnu.org/software/ed/;
|
|
|
|
maintainers = [ ];
|
|
};
|
|
}
|