gnugrep: re-split the documentation stuff

This commit is contained in:
Vladimír Čunát 2015-10-15 13:40:58 +02:00
parent 6d6f8282f4
commit ad02a45af0

View file

@ -12,7 +12,7 @@ stdenv.mkDerivation {
patches = [ ./cve-2015-1345.patch ];
#outputs = [ "out" "doc" ]; ToDo
outputs = [ "out" "info" ]; # the man pages are rather small
buildInputs = [ pcre xz.bin libiconv ];
@ -37,7 +37,7 @@ stdenv.mkDerivation {
chmod +x $out/bin/egrep $out/bin/fgrep
'';
meta = {
meta = with stdenv.lib; {
homepage = http://www.gnu.org/software/grep/;
description = "GNU implementation of the Unix grep command";
@ -47,10 +47,10 @@ stdenv.mkDerivation {
prints the matching lines.
'';
license = stdenv.lib.licenses.gpl3Plus;
license = licenses.gpl3Plus;
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = stdenv.lib.platforms.all;
maintainers = [ maintainers.eelco ];
platforms = platforms.all;
};
passthru = {inherit pcre;};