Skip to content

Commit

Permalink
blah
Browse files Browse the repository at this point in the history
  • Loading branch information
tbidne committed Feb 12, 2025
1 parent a8e3106 commit d6058f1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,13 @@
modifier =
drv:
drv.overrideAttrs (oldAttrs: {
# So wrapProgram is available in postFixup
nativeBuildInputs = oldAttrs.nativeBuildInputs or [ ] ++ [ pkgs.makeWrapper ];
# We have makeWrapper so wrapProgram is available in
# postFixup. Git is because it is needed to run the tests
# (git diff).
nativeBuildInputs = oldAttrs.nativeBuildInputs or [ ] ++ [
pkgs.git
pkgs.makeWrapper
];

# This is apparently unnecessary, but knowing what version of
# node pacer is using could be helpful.
Expand Down

0 comments on commit d6058f1

Please sign in to comment.