about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/test-framework-hunit/default.nix
blob: 9efcff9a6d1e2eb9207a370a069aeef875242c54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, extensibleExceptions, HUnit, testFramework }:

cabal.mkDerivation (self: {
  pname = "test-framework-hunit";
  version = "0.3.0.1";
  sha256 = "1h0h55kf6ff25nbfx1mhliwyknc0glwv3zi78wpzllbjbs7gvyfk";
  buildDepends = [ extensibleExceptions HUnit testFramework ];
  meta = {
    homepage = "https://batterseapower.github.io/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 ];
  };
})