···4849 # Making regexp to patch-out installing of .so symlinks from Makefile is
50 # complicated, it is easier to remove them post-install.
51- postInstall = lib.optionalString stdenv.hostPlatform.isStatic ''
00052 rm $out/lib/*.so*
53 '';
54
···4849 # Making regexp to patch-out installing of .so symlinks from Makefile is
50 # complicated, it is easier to remove them post-install.
51+ postInstall = ''
52+ mkdir -p $out/share/doc/${pname}
53+ cp -r configs doc/* $out/share/doc/${pname}
54+ '' + lib.optionalString stdenv.hostPlatform.isStatic ''
55 rm $out/lib/*.so*
56 '';
57