mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Merge pull request #308380 from alexfmpe/reflex-fixes
haskellPackages.reflex fixes
This commit is contained in:
commit
05c00d87a2
@ -1385,8 +1385,6 @@ self: super: {
|
||||
# Fix build with attr-2.4.48 (see #53716)
|
||||
xattr = appendPatch ./patches/xattr-fix-build.patch super.xattr;
|
||||
|
||||
patch = dontCheck super.patch;
|
||||
|
||||
esqueleto =
|
||||
overrideCabal
|
||||
(drv: {
|
||||
@ -1837,9 +1835,6 @@ self: super: {
|
||||
# https://github.com/adnelson/semver-range/issues/15
|
||||
semver-range = dontCheck super.semver-range;
|
||||
|
||||
# https://github.com/obsidiansystems/dependent-sum/issues/55
|
||||
dependent-sum = doJailbreak super.dependent-sum;
|
||||
|
||||
# 2022-06-19: Disable checks because of https://github.com/reflex-frp/reflex/issues/475
|
||||
reflex = doJailbreak (dontCheck super.reflex);
|
||||
|
||||
|
@ -132,4 +132,14 @@ self: super: {
|
||||
})
|
||||
super.libmpd;
|
||||
|
||||
# Loosen bounds
|
||||
patch = appendPatch (pkgs.fetchpatch {
|
||||
url = "https://github.com/reflex-frp/patch/commit/91fed138483a7bf2b098d45b9e5cc36191776320.patch";
|
||||
sha256 = "sha256-/KLfIshia88lU5G/hA7ild7+a2mqc7qgSa9AEBqEqkQ=";
|
||||
}) super.patch;
|
||||
reflex = appendPatch (pkgs.fetchpatch {
|
||||
url = "https://github.com/reflex-frp/reflex/commit/0ac53ca3eab2649dd3f3edc585e10af8d13b28cd.patch";
|
||||
sha256 = "sha256-umjwgdSKebJdRrXjwHhsi8HBqotx1vFibY9ttLkyT/0=";
|
||||
}) super.reflex;
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user