summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text/gnused
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-04-30 19:30:35 +0000
committerLudovic Courtès <ludo@gnu.org>2009-04-30 19:30:35 +0000
commit39195f42ff1aba45d64dc287fa1f4b3f2f0c6faa (patch)
tree5b8fd5d68538c2486b9bb51562590317acbdd6fc /pkgs/tools/text/gnused
parent5773834497519a9ffbc91d6271fd36377c47c526 (diff)
GNU sed: Update/fix `meta'.
svn path=/nixpkgs/trunk/; revision=15417
Diffstat (limited to 'pkgs/tools/text/gnused')
-rw-r--r--pkgs/tools/text/gnused/default.nix15
1 files changed, 13 insertions, 2 deletions
diff --git a/pkgs/tools/text/gnused/default.nix b/pkgs/tools/text/gnused/default.nix
index 2425147688b1..cea26999be08 100644
--- a/pkgs/tools/text/gnused/default.nix
+++ b/pkgs/tools/text/gnused/default.nix
@@ -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+";
};
}