forked from mirrors/nixpkgs
haskellPackages.tastyAntXml: New expression
This commit is contained in:
parent
8786aa1213
commit
1eb47b17af
18
pkgs/development/libraries/haskell/tasty-ant-xml/default.nix
Normal file
18
pkgs/development/libraries/haskell/tasty-ant-xml/default.nix
Normal 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;
|
||||
};
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue