Merge pull request #65352 from ttuegel/emacs/editorconfig

editorconfig: Include runtime dependency on editorconfig-core-c
This commit is contained in:
Thomas Tuegel 2019-07-24 16:08:01 -05:00 committed by GitHub
commit 897b1af5d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

View File

@ -59,6 +59,10 @@ self:
inherit (self.melpaPackages) easy-kill;
};
editorconfig = super.editorconfig.overrideAttrs (attrs: {
propagatedUserEnvPkgs = [ external.editorconfig-core-c ];
});
egg = super.egg.overrideAttrs (attrs: {
# searches for Git at build time
nativeBuildInputs =

View File

@ -17818,11 +17818,13 @@ in
};
external = {
inherit (haskellPackages) ghc-mod structured-haskell-mode Agda hindent;
inherit (haskellPackages)
ghc-mod structured-haskell-mode Agda hindent;
inherit (pythonPackages) elpy;
inherit
autoconf automake git libffi libpng pkgconfig poppler rtags w3m zlib
substituteAll rustPlatform cmake llvmPackages libtool zeromq;
autoconf automake editorconfig-core-c git libffi libpng pkgconfig
poppler rtags w3m zlib substituteAll rustPlatform cmake llvmPackages
libtool zeromq;
};
};