nixpkgs/pkgs/development/libraries/haskell/test-framework-hunit/default.nix
Peter Simons 3e10ee5c92 Updated Haskell expressions with the latest version of cabal2nix.
* haskell-dataenc: updated to version 0.14.0.2
 * haskell-fclabels: updated to version 1.0.1

svn path=/nixpkgs/trunk/; revision=28574
2011-08-14 22:52:05 +00:00

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
];
};
})