Skip to content

Commit

Permalink
Merge pull request #129 from emacs-twist/add-patch-phase
Browse files Browse the repository at this point in the history
Include patchPhase by default in the individual elisp derivations
  • Loading branch information
akirak authored Sep 27, 2023
2 parents 3dae409 + 62f6411 commit c7c61d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/emacs/build/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ in

# If the repository contains a Makefile, configurePhase can be problematic, so
# exclude it.
phases = ["unpackPhase" "buildPhase" "checkPhase" "installPhase"];
phases = ["unpackPhase" "patchPhase" "buildPhase" "checkPhase" "installPhase"];

patches = [];

# False by default; You can override this later
doCheck = false;
Expand Down

0 comments on commit c7c61d5

Please sign in to comment.