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:
Silvan Mosberger 2019-01-28 11:11:07 +01:00 committed by GitHub
commit e47fcaed5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -213,6 +213,13 @@ self:
# upstream issue: missing file header
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
seoul256-theme = markBroken super.seoul256-theme;

View File

@ -16833,7 +16833,8 @@ in
inherit (haskellPackages) ghc-mod structured-haskell-mode Agda hindent;
inherit (pythonPackages) elpy;
inherit
autoconf automake git libffi libpng pkgconfig poppler rtags w3m zlib;
autoconf automake git libffi libpng pkgconfig poppler rtags w3m zlib
substituteAll rustPlatform;
};
};