summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/tasty/default.nix
blob: b9f403bcc3d0b4b83d3011694fd70004b3302bc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal, ansiTerminal, mtl, optparseApplicative, regexPosix, stm
, tagged
}:

cabal.mkDerivation (self: {
  pname = "tasty";
  version = "0.2";
  sha256 = "1shd4bl0wb67abs7vv3cagvpinkz2348fh7fdh3rq8l5g1jflp8q";
  buildDepends = [
    ansiTerminal mtl optparseApplicative regexPosix stm tagged
  ];
  meta = {
    description = "Modern and extensible testing framework";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
  };
})