From 39195f42ff1aba45d64dc287fa1f4b3f2f0c6faa Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 30 Apr 2009 19:30:35 +0000 Subject: GNU sed: Update/fix `meta'. svn path=/nixpkgs/trunk/; revision=15417 --- pkgs/tools/text/gnused/default.nix | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'pkgs/tools/text') diff --git a/pkgs/tools/text/gnused/default.nix b/pkgs/tools/text/gnused/default.nix index 2425147688b..cea26999be0 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+"; }; } -- cgit 1.4.1