Tweak the info wrapper to not assume all info files end in ".info" (eg emacs).
-Jens
ps Still not sure how/if to generate share/info/dir in the default profile.
Index: modules/programs/info.nix
===================================================================
--- modules/programs/info.nix (revision 19854)
+++ modules/programs/info.nix (working copy)
@@ -21,7 +21,7 @@
shopt -s nullglob
for i in $(IFS=:; echo $INFOPATH); do
- for j in $i/*.info; do
+ for j in $i/*[^0-9]; do
${pkgs.texinfo}/bin/install-info --quiet $j $dir/dir
done
done
_______________________________________________
nix-dev mailing list
[email protected]
https://mail.cs.uu.nl/mailman/listinfo/nix-dev