mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 13:43:22 +00:00
8f29e4edb3
You might have noticed, that the commit summary always abbreviated "version". That's no coincidence, as we want to empathize that our goal is (or was) yesod-test, right? /\ `.,' .''. ,`, () HOORAY! ,''. `,.' `,' () ___ __ ()_ __ `,' _(*__)(__) __\##/)(_*)_ ' ` _(__)(__)(*_)(__/||\)(*)(_)__ _(__*__)(__*__)(_*)(_*_)(__)(_*)_ _(_*__)(_*_)(_*_)(__*_)(_*_)(*_)(__)_ (_*_)(_*_)(_*____)(_)(___)(__)(_*_)(__) _(__*__)()_(_*_)(_)(*_)(__*)(_*__)(__*_) (_*(__)`--`---(___)' (__) _ (__*_)(__) (_(_*_):| .-. . (o) |(_*)(_) (___)::| ( o ) .' `._~ |:(*__*) | `-' .' ~-. |::(_*_) `. .' ______ `.| (_) We now `. .' _ .' () `. | finally `. | | `. `. () _.' .' have `. `.`--' ` ()' _,'| yesod-test `. ~~~-----~()~~ .' in nixpkgs | _ _ _ _ _() | by just `.|#|#|#|#|#()\ .' running ||#|#|#|#|.() `.___ cabal2nix `.________|() |.-.| on a bunch | || |^.-. of packages! | `| | | |^. `-._._| | | | |\. | | |_| next time, let's be `. .' productive, shall we? | | | | Signed-off-by: aszlig <aszlig@redmoonstudios.org>
23 lines
777 B
Nix
23 lines
777 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";
|
|
sha256 = "194m4va6am2fmnsvs60jclym6bvjmwp35nyv3srbdnqwg3r983h4";
|
|
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;
|
|
};
|
|
})
|