tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
haskellPackages.eventlog2html: Add patch
maralorn
2 years ago
7c668395
1124b563
+9
1 changed file
expand all
collapse all
unified
split
pkgs
development
haskell-modules
configuration-common.nix
+9
pkgs/development/haskell-modules/configuration-common.nix
···
178
178
])
179
179
];
180
180
181
181
+
# https://github.com/mpickering/eventlog2html/pull/187
182
182
+
eventlog2html = lib.pipe super.eventlog2html [
183
183
+
(appendPatch (fetchpatch {
184
184
+
name = "blaze-html-compat.patch";
185
185
+
url = "https://github.com/mpickering/eventlog2html/commit/666aee9ee44c571173a73036b36ad4154c188481.patch";
186
186
+
sha256 = "sha256-9PLygLEpJ6pAZ31gSWiEMqWxmvElT6Unc/pgr6ULIaw=";
187
187
+
}))
188
188
+
];
189
189
+
181
190
# 2023-08-09: Jailbreak because of vector < 0.13
182
191
# 2023-11-09: don't check because of https://github.com/tweag/monad-bayes/pull/326
183
192
monad-bayes = dontCheck (doJailbreak super.monad-bayes);