0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-12 13:18:57 +03:00

elisp-packages: add perl5 and ncurses to buildInputs via overrideAttrs

Erlang mode needs perl5 and ncurses to build, add buildInputs override.

Signed-off-by: Kenny Ballou <kb@devnulllabs.io>
This commit is contained in:
Kenny Ballou 2021-05-21 11:20:30 -06:00
parent 3973a56440
commit c06126fe26

View file

@ -116,6 +116,13 @@ let
stripDebugList = [ "share" ]; stripDebugList = [ "share" ];
}); });
erlang = super.erlang.overrideAttrs (attrs: {
buildInputs = attrs.buildInputs ++ [
pkgs.perl
pkgs.ncurses
];
});
# https://github.com/syl20bnr/evil-escape/pull/86 # https://github.com/syl20bnr/evil-escape/pull/86
evil-escape = super.evil-escape.overrideAttrs (attrs: { evil-escape = super.evil-escape.overrideAttrs (attrs: {
postPatch = '' postPatch = ''