23 lines
779 B
Nix
23 lines
779 B
Nix
{ cabal, attoparsec, blazeHtml, blazeMarkup, caseInsensitive, hspec
|
|
, htmlConduit, httpTypes, HUnit, monadControl, network, persistent
|
|
, poolConduit, text, transformers, wai, waiTest, xmlConduit
|
|
, xmlTypes
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-test";
|
|
version = "0.3.0.1";
|
|
sha256 = "0dfdvhk3mspqhqicjapqvjzmi0hpd2641zb1899fk6mank8yfz0m";
|
|
buildDepends = [
|
|
attoparsec blazeHtml blazeMarkup caseInsensitive hspec htmlConduit
|
|
httpTypes HUnit monadControl network persistent poolConduit text
|
|
transformers wai waiTest xmlConduit xmlTypes
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com";
|
|
description = "integration testing for WAI/Yesod Applications";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|