haskell.compiler.ghcHEAD: 9.7.20230406 -> 9.7.20230505

04b80850...983ce558

Adds support for callbacks to the JS backend.
This commit is contained in:
Naïm Favier 2023-05-05 19:49:09 +02:00 committed by sternenseemann
parent a6f307ada4
commit 9d30031014
2 changed files with 6 additions and 4 deletions

View file

@ -1,5 +1,5 @@
import ./common-hadrian.nix { import ./common-hadrian.nix {
version = "9.7.20230406"; version = "9.7.20230505";
rev = "04b80850c535fa8c11f435711577296a99499105"; rev = "983ce55815f2dd57f84ee86eee97febf7d80b470";
sha256 = "190fpgg8sbcfp2l62vaqhk3wddkbz8vf5ivd7hw5gkcyyn5px3q9"; sha256 = "sha256-U+LZIe9WbF/DF5Zn8w8wkRf4JJHxgdY2ahM517bwRo4=";
} }

View file

@ -2,7 +2,7 @@
ghcSrc ? null, ghcVersion ? null ghcSrc ? null, ghcVersion ? null
, mkDerivation, base, bytestring, Cabal, containers, directory , mkDerivation, base, bytestring, Cabal, containers, directory
, extra, filepath, lib, mtl, parsec, shake, text, transformers , extra, filepath, lib, mtl, parsec, shake, text, transformers
, unordered-containers , unordered-containers, cryptohash-sha256, base16-bytestring
, userSettings ? null , userSettings ? null
, writeText , writeText
}: }:
@ -35,6 +35,8 @@ mkDerivation {
executableHaskellDepends = [ executableHaskellDepends = [
base bytestring Cabal containers directory extra filepath mtl base bytestring Cabal containers directory extra filepath mtl
parsec shake text transformers unordered-containers parsec shake text transformers unordered-containers
] ++ lib.optionals (lib.versionAtLeast ghcVersion "9.7") [
cryptohash-sha256 base16-bytestring
]; ];
description = "GHC build system"; description = "GHC build system";
license = lib.licenses.bsd3; license = lib.licenses.bsd3;