Skip to content

Commit

Permalink
emacsPackages.emacsql: fix build for versions >= 20241115.1939 (NixOS…
Browse files Browse the repository at this point in the history
  • Loading branch information
jian-lin authored Nov 16, 2024
2 parents f4ae47b + 5f5e87e commit fbd28d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ let

dune = dontConfigure super.dune;

emacsql = super.emacsql.overrideAttrs (old: {
emacsql = super.emacsql.overrideAttrs (old: lib.optionalAttrs (lib.versionOlder old.version "20241115.1939") {
buildInputs = old.buildInputs ++ [ pkgs.sqlite ];

postBuild = ''
Expand Down

0 comments on commit fbd28d1

Please sign in to comment.