2013-04-01 16:18:47 +01:00
|
|
|
{ cabal, ansiTerminal, deepseq, filepath, hspecExpectations, HUnit
|
2014-03-20 21:26:13 +00:00
|
|
|
, QuickCheck, quickcheckIo, random, setenv, tfRandom, time
|
|
|
|
, transformers
|
2013-02-24 21:11:11 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hspec-meta";
|
2014-03-20 21:26:13 +00:00
|
|
|
version = "1.9.0";
|
|
|
|
sha256 = "1jvx748aay8ln23p382y03gk6hc19f3z62za4326i0d3cyapfqdv";
|
2013-02-24 21:11:11 +00: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:13 +00:00
|
|
|
quickcheckIo random setenv tfRandom time transformers
|
2013-02-24 21:11:11 +00:00
|
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
2013-07-01 10:04:04 +01:00
|
|
|
homepage = "http://hspec.github.io/";
|
2013-02-24 21:11:11 +00:00
|
|
|
description = "A version of Hspec which is used to test Hspec itself";
|
2013-07-01 10:04:04 +01:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2013-02-24 21:11:11 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|