mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
emacs.pkgs.eglot: build info manual
This commit is contained in:
parent
96c68c58da
commit
de24b1e3b1
@ -53,6 +53,16 @@ self: let
|
|||||||
super = removeAttrs imported [ "dash" ];
|
super = removeAttrs imported [ "dash" ];
|
||||||
|
|
||||||
overrides = {
|
overrides = {
|
||||||
|
eglot = super.eglot.overrideAttrs (old: {
|
||||||
|
postInstall = (old.postInstall or "") + ''
|
||||||
|
local info_file=eglot.info
|
||||||
|
pushd $out/share/emacs/site-lisp/elpa/eglot-*
|
||||||
|
# specify output info file to override the one defined in eglot.texi
|
||||||
|
makeinfo --output=$info_file eglot.texi
|
||||||
|
install-info $info_file dir
|
||||||
|
popd
|
||||||
|
'';
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
elpaDevelPackages = super // overrides;
|
elpaDevelPackages = super // overrides;
|
||||||
|
@ -106,6 +106,17 @@ self: let
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
eglot = super.eglot.overrideAttrs (old: {
|
||||||
|
postInstall = (old.postInstall or "") + ''
|
||||||
|
local info_file=eglot.info
|
||||||
|
pushd $out/share/emacs/site-lisp/elpa/eglot-*
|
||||||
|
# specify output info file to override the one defined in eglot.texi
|
||||||
|
makeinfo --output=$info_file eglot.texi
|
||||||
|
install-info $info_file dir
|
||||||
|
popd
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
|
||||||
jinx = super.jinx.overrideAttrs (old: let
|
jinx = super.jinx.overrideAttrs (old: let
|
||||||
libExt = pkgs.stdenv.targetPlatform.extensions.sharedLibrary;
|
libExt = pkgs.stdenv.targetPlatform.extensions.sharedLibrary;
|
||||||
in {
|
in {
|
||||||
|
Loading…
Reference in New Issue
Block a user