haskell-yesod-test: New package, version 0.3.0.
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>
2012-09-12 05:39:27 +02:00
|
|
|
{ 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";
|
2012-09-20 14:34:54 +02:00
|
|
|
version = "0.3.0.1";
|
|
|
|
sha256 = "0dfdvhk3mspqhqicjapqvjzmi0hpd2641zb1899fk6mank8yfz0m";
|
haskell-yesod-test: New package, version 0.3.0.
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>
2012-09-12 05:39:27 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|