haskellPackages.tastyHspec: New expression

This commit is contained in:
Oliver Charles 2013-11-15 11:04:12 +00:00 committed by Peter Simons
parent 1eb47b17af
commit 2e8c5b626c
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{ cabal, hspec, tasty }:
cabal.mkDerivation (self: {
pname = "tasty-hspec";
version = "0.1";
sha256 = "1pf4ffaqy0f25a2sjirg5g4gdcfslapwq4mm0pkdsysmh9bv1f64";
buildDepends = [ hspec tasty ];
meta = {
homepage = "http://github.com/mitchellwrosen/tasty-hspec";
description = "Hspec support for the Tasty test framework";
license = self.stdenv.lib.licenses.bsd3;
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 {};
tastyHspec = callPackage ../development/libraries/haskell/tasty-hspec {};
tastyHunit = callPackage ../development/libraries/haskell/tasty-hunit {};
tastySmallcheck = callPackage ../development/libraries/haskell/tasty-smallcheck {};