nixpkgs/pkgs/development/libraries/haskell/tasty/default.nix
2013-12-20 10:45:55 +01:00

20 lines
559 B
Nix

{ cabal, ansiTerminal, deepseq, either, mtl, optparseApplicative
, regexPosix, stm, tagged
}:
cabal.mkDerivation (self: {
pname = "tasty";
version = "0.6";
sha256 = "00mf8pxwingzywnzgh7dypask1spp18kpiwqjbf1y11dqbs6ib6w";
buildDepends = [
ansiTerminal deepseq either mtl optparseApplicative regexPosix stm
tagged
];
meta = {
description = "Modern and extensible testing framework";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})