diff options
Diffstat (limited to 'gnu/packages/haskell-xyz.scm')
-rw-r--r-- | gnu/packages/haskell-xyz.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 197a556f77..62b7268255 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -800,6 +800,18 @@ than @code{base-compat}, which has no dependencies.") (sha256 (base32 "00332i4n98gh06x8ii4p8mhjpq0ch1bdan9hxmdblxpgk8j7xdvz")))) (build-system haskell-build-system) + (arguments + (if (target-64bit?) + '() + (list #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-for-32-bit-system + (lambda _ + (define patch + #$(local-file + (search-patch "ghc-basement-fix-32-bit.patch"))) + + (invoke "patch" "-p1" "--force" "-i" patch))))))) (properties '((upstream-name . "basement"))) (home-page "https://github.com/haskell-foundation/foundation#readme") (synopsis "Basic primitives for Foundation starter pack") |