Added test-framework.

svn path=/nixpkgs/trunk/; revision=27695
This commit is contained in:
Andres Löh
2011-07-10 17:38:21 +00:00
parent 5d27ed479a
commit d7d0700d18
7 changed files with 81 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
{cabal, HUnit, testFramework}:
cabal.mkDerivation (self : {
pname = "test-framework-hunit";
version = "0.2.6";
sha256 = "1ivgyh71wwvrrgnk3fp6hsfssvy39jikhjdzr7x68pv1ca7f247r";
propagatedBuildInputs = [HUnit testFramework];
meta = {
description = "HUnit support for the test-framework package";
license = "BSD3";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})