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

19 lines
542 B
Nix
Raw Normal View History

{ cabal, ansiTerminal, deepseq, mtl, optparseApplicative
, regexPosix, stm, tagged
2013-08-21 10:18:45 +02:00
}:
cabal.mkDerivation (self: {
pname = "tasty";
2013-12-09 13:03:23 +01:00
version = "0.4.2";
sha256 = "06348zdagaxk0axdmfj38r2h6pcacr0kqwx6hz6f499xdj8g74g9";
2013-08-21 10:18:45 +02:00
buildDepends = [
ansiTerminal deepseq 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
};
})