mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #56162 from jacereda/fix-purescript-build
purescript: fix build compiling with ghc 8.4.4
This commit is contained in:
commit
33ebe0c79d
2 changed files with 6 additions and 1 deletions
|
@ -40,6 +40,10 @@ self: super: {
|
||||||
unix = null;
|
unix = null;
|
||||||
xhtml = null;
|
xhtml = null;
|
||||||
|
|
||||||
|
# Restricts aeson to <1.4
|
||||||
|
# https://github.com/purescript/purescript/pull/3537
|
||||||
|
purescript = doJailbreak super.purescript;
|
||||||
|
|
||||||
# https://github.com/jcristovao/enclosed-exceptions/issues/12
|
# https://github.com/jcristovao/enclosed-exceptions/issues/12
|
||||||
enclosed-exceptions = dontCheck super.enclosed-exceptions;
|
enclosed-exceptions = dontCheck super.enclosed-exceptions;
|
||||||
|
|
||||||
|
|
|
@ -7082,7 +7082,8 @@ in
|
||||||
|
|
||||||
all-cabal-hashes = callPackage ../data/misc/hackage { };
|
all-cabal-hashes = callPackage ../data/misc/hackage { };
|
||||||
|
|
||||||
purescript = haskell.lib.justStaticExecutables haskellPackages.purescript;
|
# Build with ghc 8.4 due to https://github.com/NixOS/nixpkgs/issues/53597
|
||||||
|
purescript = haskell.lib.justStaticExecutables haskell.packages.ghc844.purescript;
|
||||||
psc-package = haskell.lib.justStaticExecutables
|
psc-package = haskell.lib.justStaticExecutables
|
||||||
(haskellPackages.callPackage ../development/compilers/purescript/psc-package { });
|
(haskellPackages.callPackage ../development/compilers/purescript/psc-package { });
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue