forked from mirrors/nixpkgs
haskell.compiler.ghcHEAD: 9.7.20230406 -> 9.7.20230505
04b80850...983ce558
Adds support for callbacks to the JS backend.
This commit is contained in:
parent
a6f307ada4
commit
9d30031014
|
@ -1,5 +1,5 @@
|
|||
import ./common-hadrian.nix {
|
||||
version = "9.7.20230406";
|
||||
rev = "04b80850c535fa8c11f435711577296a99499105";
|
||||
sha256 = "190fpgg8sbcfp2l62vaqhk3wddkbz8vf5ivd7hw5gkcyyn5px3q9";
|
||||
version = "9.7.20230505";
|
||||
rev = "983ce55815f2dd57f84ee86eee97febf7d80b470";
|
||||
sha256 = "sha256-U+LZIe9WbF/DF5Zn8w8wkRf4JJHxgdY2ahM517bwRo4=";
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
ghcSrc ? null, ghcVersion ? null
|
||||
, mkDerivation, base, bytestring, Cabal, containers, directory
|
||||
, extra, filepath, lib, mtl, parsec, shake, text, transformers
|
||||
, unordered-containers
|
||||
, unordered-containers, cryptohash-sha256, base16-bytestring
|
||||
, userSettings ? null
|
||||
, writeText
|
||||
}:
|
||||
|
@ -35,6 +35,8 @@ mkDerivation {
|
|||
executableHaskellDepends = [
|
||||
base bytestring Cabal containers directory extra filepath mtl
|
||||
parsec shake text transformers unordered-containers
|
||||
] ++ lib.optionals (lib.versionAtLeast ghcVersion "9.7") [
|
||||
cryptohash-sha256 base16-bytestring
|
||||
];
|
||||
description = "GHC build system";
|
||||
license = lib.licenses.bsd3;
|
||||
|
|
Loading…
Reference in a new issue