aa699024db
svn path=/nixpkgs/trunk/; revision=16365
34 lines
1,012 B
Nix
34 lines
1,012 B
Nix
{ fetchurl, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ed-1.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/ed/${name}.tar.gz";
|
|
sha256 = "1njgcghms1377csldi1yqjhcpghiii6bshdhnjpqp78sxs2xldnv";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "GNU ed, 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 = "GPLv3+";
|
|
|
|
homepage = http://www.gnu.org/software/ed/;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
};
|
|
}
|