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

21 lines
648 B
Nix
Raw Normal View History

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