From 31404dd2a2225d7e606b9a76317737d4ad8671de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 14 May 2021 10:42:18 +0200 Subject: [PATCH] haskellPackages.scrypt: only supports x86 --- pkgs/development/haskell-modules/configuration-nix.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index c5d8b418b51..e32a5b360ee 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -772,4 +772,9 @@ self: super: builtins.intersectAttrs super { export HOME=$TMPDIR/home ''; }); + + # https://github.com/informatikr/scrypt/issues/8 + scrypt = overrideCabal super.scrypt { + platforms = pkgs.lib.platforms.x86; + }; }