diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2021-12-07 11:55:41 +0100 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2021-12-07 11:55:41 +0100 |
| commit | 70c18b3bde531110e945ccb8e241c852a02cba74 (patch) | |
| tree | 2856ef57cff85a46db909257fde40427988f1eee /modules/why3.nix | |
| parent | 240088dc482473236415e208a4be446e22dbc24c (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/why3.nix')
| -rw-r--r-- | modules/why3.nix | 2 |
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"; |
