mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
gawk: link gawk manpage to awk
This commit is contained in:
parent
4182fc36b6
commit
04d4d14d6d
@ -32,7 +32,10 @@ stdenv.mkDerivation rec {
|
||||
configureFlags = stdenv.lib.optional (stdenv.system != "x86_64-cygwin") "--with-libsigsegv-prefix=${libsigsegv}"
|
||||
++ [(if interactive then "--with-readline=${readline.dev}" else "--without-readline")];
|
||||
|
||||
postInstall = "rm $out/bin/gawk-*";
|
||||
postInstall = ''
|
||||
rm $out/bin/gawk-*
|
||||
ln -s $man/share/man/man1/gawk.1 $man/share/man/man1/awk.1
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.gnu.org/software/gawk/;
|
||||
|
Loading…
Reference in New Issue
Block a user