2012-02-16 15:05:41 +01:00
|
|
|
{ cabal }:
|
2010-04-01 12:56:48 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-04-01 12:56:48 +02:00
|
|
|
pname = "HUnit";
|
2011-08-10 01:00:20 +02:00
|
|
|
version = "1.2.2.1";
|
2010-04-01 12:56:48 +02:00
|
|
|
sha256 = "47235503b666658588181795540d29212283059b21edc42e1b4f1998e46ac853";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2010-04-01 12:56:48 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://hunit.sourceforge.net/";
|
2010-04-01 12:56:48 +02:00
|
|
|
description = "A unit testing framework for Haskell";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-04-01 12:56:48 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|