We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is a Haskell application its own dependency? cabal freeze appears to think so:
cabal freeze
$ cat > self.cabal << EOF name: self version: 0.0 build-type: Simple cabal-version: >=1.2 executable self build-depends: base EOF $ cabal freeze Resolving dependencies... $ cat cabal.config constraints: base ==4.7.0.0, ghc-prim ==0.3.1.0, integer-gmp ==0.5.1.0, rts ==1.0, self ==0.0
I would argue this is incorrect behaviour. Does anyone think otherwise?
The text was updated successfully, but these errors were encountered:
I agree. This is incorrect behavior.
Sorry, something went wrong.
I agree too. I've put this on my list of issues to look at too. Thanks for the report and the test case.
@benarmston: You're welcome. I now see you've considered this issue earlier. Please don't omit the base dependency, though.
base
Halcyon includes a workaround for this issue.
cabal install --enable-tests --dependencies-only --dry-run
Successfully merging a pull request may close this issue.
Is a Haskell application its own dependency?
cabal freeze
appears to think so:I would argue this is incorrect behaviour. Does anyone think otherwise?
The text was updated successfully, but these errors were encountered: