nixpkgs/pkgs/development/libraries/haskell/yesod-test/default.nix
aszlig 8f29e4edb3
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 07:10:18 +02:00

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;
};
})