Merge pull request #54194 from vanzef/racer-mode-path-fix
emacsPackagesNg.racer-mode: fix default value for RUST_SRC_PATH
This commit is contained in:
commit
e47fcaed5b
|
@ -213,6 +213,13 @@ self:
|
||||||
# upstream issue: missing file header
|
# upstream issue: missing file header
|
||||||
qiita = markBroken super.qiita;
|
qiita = markBroken super.qiita;
|
||||||
|
|
||||||
|
racer = super.racer.overrideAttrs (attrs: {
|
||||||
|
postPatch = attrs.postPatch or "" + ''
|
||||||
|
substituteInPlace racer.el \
|
||||||
|
--replace /usr/local/src/rust/src ${external.rustPlatform.rustcSrc}
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
|
||||||
# upstream issue: missing file footer
|
# upstream issue: missing file footer
|
||||||
seoul256-theme = markBroken super.seoul256-theme;
|
seoul256-theme = markBroken super.seoul256-theme;
|
||||||
|
|
||||||
|
|
|
@ -16833,7 +16833,8 @@ in
|
||||||
inherit (haskellPackages) ghc-mod structured-haskell-mode Agda hindent;
|
inherit (haskellPackages) ghc-mod structured-haskell-mode Agda hindent;
|
||||||
inherit (pythonPackages) elpy;
|
inherit (pythonPackages) elpy;
|
||||||
inherit
|
inherit
|
||||||
autoconf automake git libffi libpng pkgconfig poppler rtags w3m zlib;
|
autoconf automake git libffi libpng pkgconfig poppler rtags w3m zlib
|
||||||
|
substituteAll rustPlatform;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue