Merge pull request #99926 from KAction/unbreak-hpack-dhall
Unbreak haskellPackages.hpack-dhall
This commit is contained in:
commit
e968fa825d
|
@ -137,6 +137,14 @@ self: super: {
|
||||||
then addBuildDepend super.halive pkgs.darwin.apple_sdk.frameworks.AppKit
|
then addBuildDepend super.halive pkgs.darwin.apple_sdk.frameworks.AppKit
|
||||||
else super.halive;
|
else super.halive;
|
||||||
|
|
||||||
|
# Test suite fails due golden tests checking text representation
|
||||||
|
# of normalized dhall expressions, and newer dhall versions format
|
||||||
|
# differently.
|
||||||
|
hpack-dhall =
|
||||||
|
if pkgs.lib.versionOlder "0.5.2" super.hpack-dhall.version
|
||||||
|
then throw "Drop dontCheck override for hpack-dhall > 0.5.2"
|
||||||
|
else dontCheck super.hpack-dhall;
|
||||||
|
|
||||||
barbly = addBuildDepend super.barbly pkgs.darwin.apple_sdk.frameworks.AppKit;
|
barbly = addBuildDepend super.barbly pkgs.darwin.apple_sdk.frameworks.AppKit;
|
||||||
|
|
||||||
# Hakyll's tests are broken on Darwin (3 failures); and they require util-linux
|
# Hakyll's tests are broken on Darwin (3 failures); and they require util-linux
|
||||||
|
|
|
@ -6357,7 +6357,6 @@ broken-packages:
|
||||||
- hp2any-graph
|
- hp2any-graph
|
||||||
- hp2any-manager
|
- hp2any-manager
|
||||||
- hpack-convert
|
- hpack-convert
|
||||||
- hpack-dhall
|
|
||||||
- hpaco
|
- hpaco
|
||||||
- hpaco-lib
|
- hpaco-lib
|
||||||
- hpage
|
- hpage
|
||||||
|
|
Loading…
Reference in New Issue