2013-11-15 11:07:57 +00:00
|
|
|
{ cabal, filepath, mtl, optparseApplicative, tagged, tasty
|
|
|
|
, temporary
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "tasty-golden";
|
2013-12-26 19:37:03 +00:00
|
|
|
version = "2.2.0.2";
|
|
|
|
sha256 = "0wy29ybb31g34gjyx95an3azh111crvrrdhbbihjj064xvf6ddmy";
|
2013-11-15 11:07:57 +00:00
|
|
|
buildDepends = [
|
|
|
|
filepath mtl optparseApplicative tagged tasty temporary
|
|
|
|
];
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
})
|