Skip to content
New issue

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

haskell.packages.ghcjs.vector: Fix evaluation failure #150002

Merged
merged 1 commit into from
Dec 11, 2021

Commits on Dec 10, 2021

  1. haskell.packages.ghcjs.vector: Fix evaluation failure

    The derivation for the GHCJS `vector` package broke in NixOS#142940 due to
    introducing the line of code that this change deletes.
    
    The offending line appears to have been unintentionally added and
    causes an evaluation failure for two separate reason :
    
    * The argument order is wrong
    
      The change in NixOS#142940 switched the `haskellLib` utilities to flip
      their argument order, but the `appendPatch` in the offending line
      has the original argument order
    
    * The patch file referenced by the offending line does not exist
    
    The correct fix is to delete the line, because the patch is not
    necessary.  The default version of the `vector` package is `0.12.3.1`,
    which already includes the fix from that patch.
    Gabriella439 committed Dec 10, 2021
    Configuration menu
    Copy the full SHA
    faf24dc View commit details
    Browse the repository at this point in the history