3e10ee5c92
* haskell-dataenc: updated to version 0.14.0.2 * haskell-fclabels: updated to version 1.0.1 svn path=/nixpkgs/trunk/; revision=28574
19 lines
616 B
Nix
19 lines
616 B
Nix
{ cabal, extensibleExceptions, HUnit, testFramework }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "test-framework-hunit";
|
|
version = "0.2.6";
|
|
sha256 = "1ivgyh71wwvrrgnk3fp6hsfssvy39jikhjdzr7x68pv1ca7f247r";
|
|
buildDepends = [ extensibleExceptions HUnit testFramework ];
|
|
meta = {
|
|
homepage = "http://batterseapower.github.com/test-framework/";
|
|
description = "HUnit support for the test-framework package";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|