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 08:18:45 +00:00
}:
cabal.mkDerivation (self: {
pname = "tasty";
2013-12-10 19:45:18 +00:00
version = "0.5.1";
sha256 = "0a59cwy3ks9jz7v27n9ws85qga38ksv1mg68p62birm1rw9xc3xd";
2013-08-21 08:18:45 +00:00
buildDepends = [
ansiTerminal deepseq mtl optparseApplicative regexPosix stm tagged
2013-08-21 08:18:45 +00: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 08:18:45 +00:00
};
})