2013-04-01 17:18:47 +02:00
|
|
|
{ cabal, ansiTerminal, deepseq, filepath, hspecExpectations, HUnit
|
|
|
|
, QuickCheck, quickcheckIo, random, setenv, time, transformers
|
2013-02-24 22:11:11 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hspec-meta";
|
2013-04-10 08:34:44 +02:00
|
|
|
version = "1.5.3";
|
|
|
|
sha256 = "13yzk3qgqbb5jlrvy1mdq5782jzjllhnfi6ylrv8zix192y8v1mh";
|
2013-02-24 22:11:11 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-04-01 17:18:47 +02:00
|
|
|
ansiTerminal deepseq filepath hspecExpectations HUnit QuickCheck
|
|
|
|
quickcheckIo random setenv time transformers
|
2013-02-24 22:11:11 +01:00
|
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
|
|
homepage = "http://hspec.github.com/";
|
|
|
|
description = "A version of Hspec which is used to test Hspec itself";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 14:57:25 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
2013-02-24 22:11:11 +01:00
|
|
|
};
|
|
|
|
})
|