fix: admin server dies silently by upgrading warp

Uses warp main branch https://github.com/yesodweb/wai/commit/ad041216b643f69a2a9c87cbf4c2988aa4633dd5
since there's no release yet.
This commit is contained in:
steve-chavez
2026-07-10 17:56:15 -05:00
committed by Steve Chavez
parent 4fc47754c2
commit 3522917021
4 changed files with 25 additions and 13 deletions
+9 -7
View File
@@ -87,13 +87,15 @@ let
{ };
warp =
lib.dontCheck (prev.callHackageDirect
{
pkg = "warp";
ver = "3.4.13";
sha256 = "sha256-jmr8kpeSPDkOhT0i9PhozZapX4nUs92cOX7POAGb7/M=";
}
{ });
lib.dontCheck
(prev.callCabal2nixWithOptions "warp"
(super.fetchFromGitHub {
owner = "yesodweb";
repo = "wai";
rev = "ad041216b643f69a2a9c87cbf4c2988aa4633dd5";
sha256 = "sha256-Dl3wLrGl1HvkF9MqGdY4dzx4z6SlCSiFZgCgprd7Cjg=";
}) "--subpath=warp"
{ });
};
in
{