nixpkgs/pkgs/development/libraries/haskell/tasty/default.nix

20 lines
559 B
Nix
Raw Normal View History

2013-12-20 10:45:55 +01:00
{ cabal, ansiTerminal, deepseq, either, mtl, optparseApplicative
, regexPosix, stm, tagged
2013-08-21 10:18:45 +02:00
}:
cabal.mkDerivation (self: {
pname = "tasty";
2013-12-20 10:45:55 +01:00
version = "0.6";
sha256 = "00mf8pxwingzywnzgh7dypask1spp18kpiwqjbf1y11dqbs6ib6w";
2013-08-21 10:18:45 +02:00
buildDepends = [
2013-12-20 10:45:55 +01:00
ansiTerminal deepseq either mtl optparseApplicative regexPosix stm
tagged
2013-08-21 10:18:45 +02:00
];
meta = {
description = "Modern and extensible testing framework";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
2013-08-21 10:18:45 +02:00
};
})