3
0
Fork 0
forked from mirrors/nixpkgs

GNU sed: Update/fix `meta'.

svn path=/nixpkgs/trunk/; revision=15417
This commit is contained in:
Ludovic Courtès 2009-04-30 19:30:35 +00:00
parent 5773834497
commit 39195f42ff

View file

@ -12,7 +12,18 @@ stdenv.mkDerivation {
patches = [./gettext-fix.patch];
meta = {
homepage = http://www.gnu.org/software/grep/;
description = "GNU implementation of the Unix sed command";
homepage = http://www.gnu.org/software/sed/;
description = "GNU sed, a batch stream editor";
longDescription = ''
Sed (stream editor) isn't really a true text editor or text
processor. Instead, it is used to filter text, i.e., it takes
text input and performs some operation (or set of operations) on
it and outputs the modified text. Sed is typically used for
extracting part of a file using pattern matching or substituting
multiple occurrences of a string within a file.
'';
license = "GPLv2+";
};
}