nixpkgs/pkgs/development/libraries/haskell/tasty/default.nix
2013-12-10 20:45:18 +01:00

19 lines
542 B
Nix

{ cabal, ansiTerminal, deepseq, mtl, optparseApplicative
, regexPosix, stm, tagged
}:
cabal.mkDerivation (self: {
pname = "tasty";
version = "0.5.1";
sha256 = "0a59cwy3ks9jz7v27n9ws85qga38ksv1mg68p62birm1rw9xc3xd";
buildDepends = [
ansiTerminal deepseq mtl optparseApplicative regexPosix stm tagged
];
meta = {
description = "Modern and extensible testing framework";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})