21 lines
731 B
Nix
21 lines
731 B
Nix
{ cabal, blazeBuilder, blazeBuilderConduit, caseInsensitive
|
|
, conduit, cookie, httpTypes, HUnit, network, text, transformers
|
|
, wai
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "wai-test";
|
|
version = "1.3.0.5";
|
|
sha256 = "0v0x1sk7q36xy8syinc96y1jsyjvw6756cich4hxq86l2jfbgccw";
|
|
buildDepends = [
|
|
blazeBuilder blazeBuilderConduit caseInsensitive conduit cookie
|
|
httpTypes HUnit network text transformers wai
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/web-application-interface";
|
|
description = "Unit test framework (built on HUnit) for WAI applications";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
|
};
|
|
})
|