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:
parent
3973a56440
commit
c06126fe26
1 changed files with 7 additions and 0 deletions
|
@ -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 = ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue