haskellPackages.tastyGolden: New expression

This commit is contained in:
Oliver Charles 2013-11-15 11:07:57 +00:00 committed by Peter Simons
parent 17b738330c
commit 6e89adc6ba
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ cabal, filepath, mtl, optparseApplicative, tagged, tasty
, temporary
}:
cabal.mkDerivation (self: {
pname = "tasty-golden";
version = "2.2";
sha256 = "0z49w4ksbbih3x0j170pfy93r2d68jw34hdni4s2p43kds52cakb";
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 ];
};
})

View File

@ -2048,6 +2048,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
tastyAntXml = callPackage ../development/libraries/haskell/tasty-ant-xml {};
tastyGolden = callPackage ../development/libraries/haskell/tasty-golden {};
tastyHspec = callPackage ../development/libraries/haskell/tasty-hspec {};
tastyHunit = callPackage ../development/libraries/haskell/tasty-hunit {};