Skip to content

Commit 29e605a

Browse files
committed
Add comment
1 parent 9003ca9 commit 29e605a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/call-cabal-project-to-nix.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,11 @@ let
385385
LANG = "en_US.UTF-8";
386386
meta.platforms = pkgs.lib.platforms.all;
387387
preferLocalBuild = false;
388-
outputs = ["out" "json" "freeze"];
388+
outputs = [
389+
"out" # The results of plan-to-nix
390+
"json" # The `plan.json` file generated by cabal and used for `plan-to-nix` input
391+
"freeze" # The `cabal.project.freeze` file created by `cabal v2-freeze`
392+
];
389393
} ''
390394
tmp=$(mktemp -d)
391395
cd $tmp

0 commit comments

Comments
 (0)