Skip to content

Commit

Permalink
fix: Fix the wrong patch from statix
Browse files Browse the repository at this point in the history
  • Loading branch information
akirak committed Nov 10, 2024
1 parent c6d32b6 commit 3788ae5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/build-support/elisp/parseUsePackages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ with builtins; let
else if head xs == key
then elemAt xs 1
else plistGet (tail xs) key;
isEnsured = form: alwaysEnsure || plistGet form ":ensure";
isEnabled = form: !plistGet form ":disabled";
isEnsured = form: alwaysEnsure || (plistGet form ":ensure");
isEnabled = form: !(plistGet form ":disabled");
ensuredPackageName = form: plistGet form ":ensure";
findPin = form: plistGet form ":pin";
isUsePackageForm = xs:
Expand Down

0 comments on commit 3788ae5

Please sign in to comment.