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

wai-app-static: init at 3.1.7.4

parent 93e03039
No related merge requests found
...@@ -581,6 +581,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -581,6 +581,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "vinyl" "0.14.3" , callHackage "vinyl" "0.14.3"
, callHackage "void" "0.7.3" , callHackage "void" "0.7.3"
, callHackage "vty" "5.37" , callHackage "vty" "5.37"
, callHackage "wai-app-static" "3.1.7.4"
, callHackage "wai-extra" "3.1.13.0" , callHackage "wai-extra" "3.1.13.0"
, callCabal2nix , callCabal2nix
"wai-middleware-heartbeat" "wai-middleware-heartbeat"
......
...@@ -779,6 +779,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -779,6 +779,8 @@ final: prev: with pkgs.haskell.lib; {
wai = prev.callPackage (./pkgs/wai.nix) { }; wai = prev.callPackage (./pkgs/wai.nix) { };
wai-app-static = prev.callPackage (./pkgs/wai-app-static.nix) { };
wai-extra = prev.callPackage (./pkgs/wai-extra.nix) { }; wai-extra = prev.callPackage (./pkgs/wai-extra.nix) { };
wai-logger = prev.callPackage (./pkgs/wai-logger.nix) { }; wai-logger = prev.callPackage (./pkgs/wai-logger.nix) { };
......
{ mkDerivation
, base
, blaze-html
, blaze-markup
, bytestring
, containers
, cryptonite
, directory
, file-embed
, filepath
, hspec
, http-date
, http-types
, lib
, memory
, mime-types
, mockery
, network
, old-locale
, optparse-applicative
, template-haskell
, temporary
, text
, time
, transformers
, unix-compat
, unordered-containers
, wai
, wai-extra
, warp
, zlib
}:
mkDerivation {
pname = "wai-app-static";
version = "3.1.7.4";
sha256 = "647188444b19dc953bbfbab5611c81c1e1f27c31bac5dc31dd5de27cdbf01fc1";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
blaze-html
blaze-markup
bytestring
containers
cryptonite
directory
file-embed
filepath
http-date
http-types
memory
mime-types
old-locale
optparse-applicative
template-haskell
text
time
transformers
unix-compat
unordered-containers
wai
wai-extra
warp
zlib
];
executableHaskellDepends = [
base
bytestring
containers
directory
mime-types
text
];
testHaskellDepends = [
base
bytestring
filepath
hspec
http-date
http-types
mime-types
mockery
network
old-locale
temporary
text
time
transformers
unix-compat
wai
wai-extra
zlib
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://www.yesodweb.com/book/web-application-interface";
description = "WAI application for static serving";
license = lib.licenses.mit;
mainProgram = "warp";
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