haskellPackages.streaming-commons: fix build on windows

This commit is contained in:
Alexandre Esteves
2025-10-23 23:04:12 +01:00
parent 9cb747d793
commit 34db4e48b7
@@ -1,7 +1,7 @@
{ pkgs, haskellLib }:
let
inherit (pkgs) lib;
inherit (pkgs) fetchpatch lib;
in
with haskellLib;
@@ -13,4 +13,11 @@ with haskellLib;
addBuildDepends [ self.temporary ] super.network
else
super.network;
# https://github.com/fpco/streaming-commons/pull/84
streaming-commons = appendPatch (fetchpatch {
name = "fix-headers-case.patch";
url = "https://github.com/fpco/streaming-commons/commit/6da611f63e9e862523ce6ee53262ddbc9681ae24.patch";
sha256 = "sha256-giEQqXZfoiAvtCFohdgOoYna2Tnu5aSYAOUH8YVldi0=";
}) super.streaming-commons;
})