From aa849fe602d453bb13ccd9d9fb00c635d469e9bd Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sat, 26 Feb 2022 00:47:55 +0100 Subject: [PATCH] release-haskell.nix: generate jobs for native-bignum ghc 9.0.2 --- pkgs/top-level/release-haskell.nix | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/pkgs/top-level/release-haskell.nix b/pkgs/top-level/release-haskell.nix index ec68b3f9f864..458accc2be2a 100644 --- a/pkgs/top-level/release-haskell.nix +++ b/pkgs/top-level/release-haskell.nix @@ -285,18 +285,27 @@ let # Test some statically linked packages to catch regressions # and get some cache going for static compilation with GHC. # Use integer-simple to avoid GMP linking problems (LGPL) - pkgsStatic.haskell.packages.integer-simple.ghc8107 = + pkgsStatic.haskell.packages = removePlatforms [ "aarch64-linux" # times out on Hydra "x86_64-darwin" # TODO: reenable when static libiconv works on darwin - ] - { - inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.integer-simple.ghc8107) - hello - lens - random + ] { + integer-simple.ghc8107 = { + inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.integer-simple.ghc8107) + hello + lens + random ; + }; + + native-bignum.ghc902 = { + inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.native-bignum.ghc902) + hello + lens + random + ; + }; }; }) (versionedCompilerJobs {