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

18 lines
463 B
Nix
Raw Normal View History

2013-08-21 10:18:45 +02:00
{ cabal, ansiTerminal, mtl, optparseApplicative, regexPosix, stm
, tagged
}:
cabal.mkDerivation (self: {
pname = "tasty";
2013-11-05 14:22:52 +01:00
version = "0.4";
sha256 = "1gcaam49nm6fx0i2hlf1zih4rxzfgnsl4xiwnqifhz9m15n5laxq";
2013-08-21 10:18:45 +02:00
buildDepends = [
ansiTerminal mtl optparseApplicative regexPosix stm tagged
];
meta = {
description = "Modern and extensible testing framework";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})