Skip to content
Snippets Groups Projects
Commit 19682a90 authored by Daniel Firth's avatar Daniel Firth
Browse files

wai: init at 3.2.3

parent 8608ced5
No related merge requests found
......@@ -526,6 +526,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(Some "bd7dbbe83d25c00fcd2cf5c77736af904910c596")
(None Text)
, callHackage "wai-middleware-static" "0.9.2"
, callHackage "wai" "3.2.3"
, callHackage "warp" "3.3.22"
, callHackage "warp-tls" "3.3.3"
, callHackage "witherable" "0.4.2"
......
......@@ -657,6 +657,8 @@ final: prev: with pkgs.haskell.lib; {
vty = prev.callPackage (./pkgs/vty.nix) { };
wai = prev.callPackage (./pkgs/wai.nix) { };
wai-middleware-heartbeat = prev.callPackage (./pkgs/wai-middleware-heartbeat.nix) { };
wai-middleware-static = prev.callPackage (./pkgs/wai-middleware-static.nix) { };
......
{ mkDerivation
, base
, bytestring
, hspec
, hspec-discover
, http-types
, lib
, network
, text
, vault
}:
mkDerivation {
pname = "wai";
version = "3.2.3";
sha256 = "5574d6541000988fe204d3032db87fd0a5404cdbde33ee4fa02e6006768229f8";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
http-types
network
text
vault
];
testHaskellDepends = [ base bytestring hspec ];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/yesodweb/wai";
description = "Web Application Interface";
license = lib.licenses.mit;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment