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

19 lines
544 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";
version = "0.4.1.1";
sha256 = "09xha87ivkllczbf0vf2n8zjn1wa5g8v8j1h9ad3207r45ndzn0w";
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
};
})