2013-04-01 16:18:47 +01:00
|
|
|
{ cabal, ansiTerminal, deepseq, doctest, filepath, ghcPaths
|
2013-04-01 09:00:40 +01:00
|
|
|
, hspecExpectations, hspecMeta, HUnit, QuickCheck, quickcheckIo
|
2014-03-20 21:26:14 +00:00
|
|
|
, random, setenv, silently, tfRandom, time, transformers
|
haskell-hspec: New package, v1.3.0.
Well, we now have a direct dependency of yesod-test, things are coming close,
almost TOO close. But we still have a long journey ahead.
.---- yesod-test -------.
| | |
| | |
: wai-test html-conduit -.
: | |
: | filesystem-conduit
: |
. |
. tagstream-conduit
.
,-.,-.,-.-,-.-,.-,-.,-.,-.
( down with the s^Hhspec! )
,--. ,'`-'-`-'`-'-`-'--'-`-'-`-'
|o o|
`-'\.
[|]-' \.-`
.'. `\
| | '`
| |
| |
\|
hspec
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2012-09-12 04:16:01 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hspec";
|
2014-05-02 07:57:46 +01:00
|
|
|
version = "1.9.5";
|
|
|
|
sha256 = "0y9gbm5rwwn80yzdllh1amaih4vxa61i9dzym88jr2kkwjrhxay4";
|
haskell-hspec: New package, v1.3.0.
Well, we now have a direct dependency of yesod-test, things are coming close,
almost TOO close. But we still have a long journey ahead.
.---- yesod-test -------.
| | |
| | |
: wai-test html-conduit -.
: | |
: | filesystem-conduit
: |
. |
. tagstream-conduit
.
,-.,-.,-.-,-.-,.-,-.,-.,-.
( down with the s^Hhspec! )
,--. ,'`-'-`-'`-'-`-'--'-`-'-`-'
|o o|
`-'\.
[|]-' \.-`
.'. `\
| | '`
| |
| |
\|
hspec
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2012-09-12 04:16:01 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-04-01 16:18:47 +01:00
|
|
|
ansiTerminal deepseq filepath hspecExpectations HUnit QuickCheck
|
2014-03-20 21:26:14 +00:00
|
|
|
quickcheckIo random setenv tfRandom time transformers
|
haskell-hspec: New package, v1.3.0.
Well, we now have a direct dependency of yesod-test, things are coming close,
almost TOO close. But we still have a long journey ahead.
.---- yesod-test -------.
| | |
| | |
: wai-test html-conduit -.
: | |
: | filesystem-conduit
: |
. |
. tagstream-conduit
.
,-.,-.,-.-,-.-,.-,-.,-.,-.
( down with the s^Hhspec! )
,--. ,'`-'-`-'`-'-`-'--'-`-'-`-'
|o o|
`-'\.
[|]-' \.-`
.'. `\
| | '`
| |
| |
\|
hspec
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2012-09-12 04:16:01 +01:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2013-04-01 16:18:47 +01:00
|
|
|
ansiTerminal deepseq doctest filepath ghcPaths hspecExpectations
|
2014-03-20 21:26:14 +00:00
|
|
|
hspecMeta HUnit QuickCheck quickcheckIo random setenv silently
|
|
|
|
tfRandom time transformers
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2013-04-06 10:13:19 +01:00
|
|
|
doCheck = false;
|
haskell-hspec: New package, v1.3.0.
Well, we now have a direct dependency of yesod-test, things are coming close,
almost TOO close. But we still have a long journey ahead.
.---- yesod-test -------.
| | |
| | |
: wai-test html-conduit -.
: | |
: | filesystem-conduit
: |
. |
. tagstream-conduit
.
,-.,-.,-.-,-.-,.-,-.,-.,-.
( down with the s^Hhspec! )
,--. ,'`-'-`-'`-'-`-'--'-`-'-`-'
|o o|
`-'\.
[|]-' \.-`
.'. `\
| | '`
| |
| |
\|
hspec
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2012-09-12 04:16:01 +01:00
|
|
|
meta = {
|
2013-07-01 10:04:04 +01:00
|
|
|
homepage = "http://hspec.github.io/";
|
2012-11-16 14:59:15 +00:00
|
|
|
description = "Behavior-Driven Development for Haskell";
|
2013-07-01 10:04:04 +01:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
haskell-hspec: New package, v1.3.0.
Well, we now have a direct dependency of yesod-test, things are coming close,
almost TOO close. But we still have a long journey ahead.
.---- yesod-test -------.
| | |
| | |
: wai-test html-conduit -.
: | |
: | filesystem-conduit
: |
. |
. tagstream-conduit
.
,-.,-.,-.-,-.-,.-,-.,-.,-.
( down with the s^Hhspec! )
,--. ,'`-'-`-'`-'-`-'--'-`-'-`-'
|o o|
`-'\.
[|]-' \.-`
.'. `\
| | '`
| |
| |
\|
hspec
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2012-09-12 04:16:01 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|