summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2021-12-07 11:55:41 +0100
committerQuentin Aristote <quentin@aristote.fr>2021-12-07 11:55:41 +0100
commit70c18b3bde531110e945ccb8e241c852a02cba74 (patch)
tree2856ef57cff85a46db909257fde40427988f1eee /modules
parent240088dc482473236415e208a4be446e22dbc24c (diff)
why3 : pass the generated config file with --config instead of --extra-config
with ~--extra-config~ ~why3 --list-provers~ outputs no known provers
Diffstat (limited to 'modules')
-rw-r--r--modules/why3.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/why3.nix b/modules/why3.nix
index cd986d1..eac5f35 100644
--- a/modules/why3.nix
+++ b/modules/why3.nix
@@ -8,7 +8,7 @@ let
why3 -C $out config detect
echo "${cfg.extraConfig}" >> $out
'';
- why3Flags = concatStringsSep " " [ "--extra-config ${why3Conf}" ];
+ why3Flags = concatStringsSep " " [ "--config=${why3Conf}" ];
in {
options.why3 = {
enable = mkEnableOption "why3";