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

purescript: pin dependencies. Closes #23036. #64

Merged
merged 1 commit into from
Mar 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,18 @@ self: super: {
apiary-session = dontCheck super.apiary-session;
apiary-websockets = dontCheck super.apiary-websockets;

# See instructions provided by Peti in https://github.com/NixOS/nixpkgs/issues/23036
purescript = super.purescript.overrideScope (self: super: {
# TODO: Re-evaluate the following overrides after the 0.11 release.
aeson = self.aeson_0_11_3_0;
bower-json = self.bower-json_1_0_0_1;
optparse-applicative = self.optparse-applicative_0_13_1_0;
http-client = self.http-client_0_4_31_2;
http-client-tls = self.http-client-tls_0_2_4_1;
pipes = self.pipes_4_2_0;
websockets = self.websockets_0_9_8_2;
});

# HsColour: Language/Unlambda.hs: hGetContents: invalid argument (invalid byte sequence)
unlambda = dontHyperlinkSource super.unlambda;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2247,6 +2247,13 @@ extra-packages:
- transformers == 0.4.3.* # the latest version isn't supported by mtl yet
- vector < 0.10.10 # newer versions don't work with GHC 6.12.3
- zlib < 0.6 # newer versions break cabal-install
- aeson == 0.11.3.0 # purescript 0.10.7
- bower-json == 1.0.0.1 # purescript 0.10.7
- optparse-applicative == 0.13.1.0 # purescript 0.10.7
- http-client == 0.4.31.2 # purescript 0.10.7
- http-client-tls == 0.2.4.1 # purescript 0.10.7
- pipes == 4.2.0 # purescript 0.10.7
- websockets == 0.9.8.2 # purescript 0.10.7

package-maintainers:
peti:
Expand Down