lol

Merge pull request #286314 from dalpd/dad-fix-ascii

haskellPackages.ascii: Apply patches to ascii dependencies

authored by

maralorn and committed by
GitHub
363e86a7 b26538da

+22
+22
pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
··· 147 147 # Doctest comments have bogus imports. 148 148 bsb-http-chunked = dontCheck super.bsb-http-chunked; 149 149 150 + # This can be removed once https://github.com/typeclasses/ascii-predicates/pull/1 151 + # is merged and in a release that's being tracked. 152 + ascii-predicates = appendPatch 153 + (pkgs.fetchpatch 154 + { url = "https://github.com/typeclasses/ascii-predicates/commit/2e6d9ed45987a8566f3a77eedf7836055c076d1a.patch"; 155 + name = "ascii-predicates-pull-1.patch"; 156 + relative = "ascii-predicates"; 157 + sha256 = "sha256-4JguQFZNRQpjZThLrAo13jNeypvLfqFp6o7c1bnkmZo="; 158 + }) 159 + super.ascii-predicates; 160 + 161 + # This can be removed once https://github.com/typeclasses/ascii-numbers/pull/1 162 + # is merged and in a release that's being tracked. 163 + ascii-numbers = appendPatch 164 + (pkgs.fetchpatch 165 + { url = "https://github.com/typeclasses/ascii-numbers/commit/e9474ad91bc997891f1a46afd5d0bdf9b9f7d768.patch"; 166 + name = "ascii-numbers-pull-1.patch"; 167 + relative = "ascii-numbers"; 168 + sha256 = "sha256-buw1UeW57CFefEfqdDUraSyQ+H/NvCZOv6WF2ORiYQg="; 169 + }) 170 + super.ascii-numbers; 171 + 150 172 # Fix ghc-9.6.x build errors. 151 173 libmpd = appendPatch 152 174 # https://github.com/vimus/libmpd-haskell/pull/138