2014-03-07 22:13:16 +00:00
|
|
|
{ cabal, deepseq, filepath, mtl, optparseApplicative, tagged, tasty
|
2014-05-15 15:09:36 +01:00
|
|
|
, temporaryRc
|
2013-11-15 11:07:57 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "tasty-golden";
|
2014-05-15 15:09:36 +01:00
|
|
|
version = "2.2.1.1";
|
|
|
|
sha256 = "0a265l7fwc0sxzdy9b0jf8f5w4nws6pwhhaw1pa7qx3c8fm9v54i";
|
2013-11-15 11:07:57 +00:00
|
|
|
buildDepends = [
|
2014-05-15 15:09:36 +01:00
|
|
|
deepseq filepath mtl optparseApplicative tagged tasty temporaryRc
|
2013-11-15 11:07:57 +00: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 ];
|
|
|
|
};
|
|
|
|
})
|