gnugrep: re-split the documentation stuff
This commit is contained in:
parent
6d6f8282f4
commit
ad02a45af0
|
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
patches = [ ./cve-2015-1345.patch ];
|
patches = [ ./cve-2015-1345.patch ];
|
||||||
|
|
||||||
#outputs = [ "out" "doc" ]; ToDo
|
outputs = [ "out" "info" ]; # the man pages are rather small
|
||||||
|
|
||||||
buildInputs = [ pcre xz.bin libiconv ];
|
buildInputs = [ pcre xz.bin libiconv ];
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ stdenv.mkDerivation {
|
||||||
chmod +x $out/bin/egrep $out/bin/fgrep
|
chmod +x $out/bin/egrep $out/bin/fgrep
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.gnu.org/software/grep/;
|
homepage = http://www.gnu.org/software/grep/;
|
||||||
description = "GNU implementation of the Unix grep command";
|
description = "GNU implementation of the Unix grep command";
|
||||||
|
|
||||||
|
@ -47,10 +47,10 @@ stdenv.mkDerivation {
|
||||||
prints the matching lines.
|
prints the matching lines.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
license = stdenv.lib.licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
|
||||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
maintainers = [ maintainers.eelco ];
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {inherit pcre;};
|
passthru = {inherit pcre;};
|
||||||
|
|
Loading…
Reference in New Issue