Skip to content

Commit

Permalink
Fix bug introduced in #164 for the --arg do-nothing true case.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zimmi48 committed Oct 10, 2023
1 parent 7da1826 commit 1c4f1e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ with initial.lib; let
pkgs.coqPackages.coq.coq-version;

nativeBuildInputs = optionals (!do-nothing)
(old.nativeBuildInputs or []) ++ [ pkgs.remarshal ] ++ coq-lsp;
((old.nativeBuildInputs or []) ++ coq-lsp) ++ [ pkgs.remarshal ];

propagatedNativeBuildInputs = optionals (!do-nothing)
(old.propagatedNativeBuildInputs or []);
Expand Down

0 comments on commit 1c4f1e8

Please sign in to comment.