2014-03-07 23:13:16 +01:00
|
|
|
{ cabal, deepseq, filepath, mtl, optparseApplicative, tagged, tasty
|
2014-07-03 17:00:58 +02:00
|
|
|
, tastyHunit, temporaryRc
|
2013-11-15 12:07:57 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "tasty-golden";
|
2014-07-03 17:00:58 +02:00
|
|
|
version = "2.2.2.3";
|
|
|
|
sha256 = "0vphim4qbx0g53xvh8x90k0l5r6afivbb4y31nvbq2avmrm1i82w";
|
2013-11-15 12:07:57 +01:00
|
|
|
buildDepends = [
|
2014-05-15 16:09:36 +02:00
|
|
|
deepseq filepath mtl optparseApplicative tagged tasty temporaryRc
|
2013-11-15 12:07:57 +01:00
|
|
|
];
|
2014-07-03 17:00:58 +02:00
|
|
|
testDepends = [ filepath tasty tastyHunit temporaryRc ];
|
2013-11-15 12:07:57 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/feuerbach/tasty-golden";
|
|
|
|
description = "Golden tests support for tasty";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
|
|
};
|
|
|
|
})
|