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

20 lines
557 B
Nix
Raw Normal View History

2013-12-20 09:45:55 +00:00
{ cabal, ansiTerminal, deepseq, either, mtl, optparseApplicative
2013-12-26 19:37:03 +00:00
, regexTdfa, stm, tagged
2013-08-21 09:18:45 +01:00
}:
cabal.mkDerivation (self: {
pname = "tasty";
2013-12-26 19:37:03 +00:00
version = "0.7";
sha256 = "0nwhbbm70v2drv6kzdz65wws7gn8ph6583xpb6dw8g4j9aa1shxd";
2013-08-21 09:18:45 +01:00
buildDepends = [
2013-12-26 19:37:03 +00:00
ansiTerminal deepseq either mtl optparseApplicative regexTdfa stm
2013-12-20 09:45:55 +00:00
tagged
2013-08-21 09:18:45 +01: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 09:18:45 +01:00
};
})