haskellPackages.tastyAntXml: New expression

This commit is contained in:
Oliver Charles 2013-11-15 10:47:25 +00:00 committed by Peter Simons
parent 8786aa1213
commit 1eb47b17af
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ cabal, genericDeriving, mtl, reducers, stm, tagged, tasty
, transformers, xml
}:
cabal.mkDerivation (self: {
pname = "tasty-ant-xml";
version = "1.0.0.1";
sha256 = "1yn337dr9clzrkr8kpvm7x07lyb3v8pcijrddqah08k0ds8zpzcj";
buildDepends = [
genericDeriving mtl reducers stm tagged tasty transformers xml
];
meta = {
homepage = "http://github.com/ocharles/tasty-ant-xml";
description = "A tasty ingredient to output test results in XML, using the Ant schema. This XML can be consumed by the Jenkins continuous integration framework.";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2046,6 +2046,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
tasty = callPackage ../development/libraries/haskell/tasty {};
tastyAntXml = callPackage ../development/libraries/haskell/tasty-ant-xml {};
tastyHunit = callPackage ../development/libraries/haskell/tasty-hunit {};
tastySmallcheck = callPackage ../development/libraries/haskell/tasty-smallcheck {};