Skip to content

Commit

Permalink
Add project.plan-nix.freeze (#1055)
Browse files Browse the repository at this point in the history
Issues with `cabal.project.freeze` files can be tricky to debug.
While it is possible to run without a freeze file and look
at the `plan-nix` or `plan-nix.json` (the `plan.json`) created when
haskell.nix configured the project, it would be nice to
also have the output of `cabal freeze` as it will be in the
correct format and contains a different subset of `plan.json`
than the `plan-nix`.

This might also be useful for automating updating of `.freeze`
files.
  • Loading branch information
hamishmack committed Mar 4, 2021
1 parent f9aab92 commit cb264f6
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions lib/call-cabal-project-to-nix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,11 @@ let
LANG = "en_US.UTF-8";
meta.platforms = pkgs.lib.platforms.all;
preferLocalBuild = false;
outputs = ["out" "json"];
outputs = [
"out" # The results of plan-to-nix
"json" # The `plan.json` file generated by cabal and used for `plan-to-nix` input
"freeze" # The `cabal.project.freeze` file created by `cabal v2-freeze`
];
} ''
tmp=$(mktemp -d)
cd $tmp
Expand Down Expand Up @@ -421,10 +425,15 @@ let
${pkgs.lib.optionalString (cabalProjectFreeze != null) ''
cp ${pkgs.evalPackages.writeText "cabal.project.freeze" cabalProjectFreeze} \
cabal.project.freeze
chmod +w cabal.project.freeze
''}
export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt
export GIT_SSL_CAINFO=${cacert}/etc/ssl/certs/ca-bundle.crt
# Using `cabal v2-freeze` will configure the project (since
# it is not configured yet), taking the existing `cabal.project.freeze`
# file into account. Then it "writes out a freeze file which
# records all of the versions and flags that are picked" (from cabal docs).
echo "Using index-state ${index-state-found}"
HOME=${
# This creates `.cabal` directory that is as it would have
Expand All @@ -436,7 +445,7 @@ let
index-state = cached-index-state;
sha256 = index-sha256-found;
}
} cabal v2-configure \
} cabal v2-freeze \
--index-state=${
# Setting the desired `index-state` here in case it was not
# from the cabal.project file. This will further restrict the
Expand All @@ -453,6 +462,10 @@ let
"--ghcjs --with-ghcjs=js-unknown-ghcjs-ghc --with-ghcjs-pkg=js-unknown-ghcjs-ghc-pkg"} \
${configureArgs}
cp cabal.project.freeze $freeze
# Not needed any more (we don't want it to wind up in the $out hash)
rm cabal.project.freeze
mkdir -p $out
# ensure we have all our .cabal files (also those generated from package.yaml) files.
Expand Down

0 comments on commit cb264f6

Please sign in to comment.