haskellPackages.reflex-dom: Backpin to unbreak

This commit is contained in:
maralorn 2023-09-17 04:01:49 +02:00
parent a4deb19a3c
commit 09b047f6b3
No known key found for this signature in database
2 changed files with 25 additions and 0 deletions

View File

@ -51,6 +51,9 @@ default-package-overrides:
# ghc-lib-parser-ex >= 9.6, but LTS-21 contains ghc-lib-parser-ex-9.4
- stylish-haskell < 0.14.5.0
# 2023-09-17: reflex-dom 0.6.3.0 is broken https://github.com/reflex-frp/reflex-dom/issues/462
- reflex-dom < 0.6.2.0
# Only an older version of dependent-sum-template is compatible with ghc 9.4
# https://github.com/obsidiansystems/dependent-sum-template/issues/5
- dependent-sum-template < 0.1.2

View File

@ -249657,6 +249657,27 @@ self: {
}) {};
"reflex-dom" = callPackage
({ mkDerivation, base, bytestring, jsaddle-webkit2gtk, reflex
, reflex-dom-core, text
}:
mkDerivation {
pname = "reflex-dom";
version = "0.6.1.1";
sha256 = "0ykkzmzxiznd09sgmjwzmbrpnm8gr2bd57hzdl8avrr728bwj8ga";
revision = "2";
editedCabalFile = "0jcsl5miv1wz385kln4ap079sp54dcnc37f3kb93m5a52dwbjx4p";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base bytestring jsaddle-webkit2gtk reflex reflex-dom-core text
];
description = "Functional Reactive Web Apps with Reflex";
license = lib.licenses.bsd3;
badPlatforms = [ "aarch64-linux" ] ++ lib.platforms.darwin;
maintainers = [ lib.maintainers.maralorn ];
}) {};
"reflex-dom_0_6_3_1" = callPackage
({ mkDerivation, base, bytestring, jsaddle-webkit2gtk, reflex
, reflex-dom-core, text
}:
@ -249672,6 +249693,7 @@ self: {
description = "Functional Reactive Web Apps with Reflex";
license = lib.licenses.bsd3;
badPlatforms = [ "aarch64-linux" ] ++ lib.platforms.darwin;
hydraPlatforms = lib.platforms.none;
maintainers = [ lib.maintainers.maralorn ];
}) {};