nixpkgs/pkgs/applications/editors/ed/default.nix
Eelco Dolstra 39c8bfdcc4 * New version of ‘ed’. W00t!
svn path=/nixpkgs/branches/stdenv-updates/; revision=30862
2011-12-12 23:44:49 +00:00

38 lines
1.1 KiB
Nix

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "ed-1.5";
src = fetchurl {
url = "mirror://gnu/ed/${name}.tar.gz";
sha256 = "18gvhyhwpabmgv4lh21lg8vl3z7acdyhh2mr2kj9g75wksj39pcp";
};
doCheck = true;
crossAttrs = {
compileFlags = [ "CC=${stdenv.cross.config}-gcc" ];
};
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 ];
};
}