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

21 lines
648 B
Nix
Raw Normal View History

2014-03-07 22:13:22 +00:00
{ cabal, ansiTerminal, async, deepseq, mtl, optparseApplicative
, regexTdfa, stm, tagged, unboundedDelays
2013-08-21 08:18:45 +00:00
}:
cabal.mkDerivation (self: {
pname = "tasty";
version = "0.8.1.2";
sha256 = "07pxnm9cx28vlfypa4psnnxcfx1i4qwimkf0nkfzqkhzqb85a58s";
2013-08-21 08:18:45 +00:00
buildDepends = [
2014-03-07 22:13:22 +00:00
ansiTerminal async deepseq mtl optparseApplicative regexTdfa stm
tagged unboundedDelays
2013-08-21 08:18:45 +00:00
];
meta = {
2014-03-07 22:13:22 +00:00
homepage = "http://documentup.com/feuerbach/tasty";
2013-08-21 08:18:45 +00:00
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 08:18:45 +00:00
};
})