summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/testpack/default.nix
blob: fc77c15446d8d226bb3abe2eef11a4b9b69025b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, HUnit, QuickCheck, mtl}:

cabal.mkDerivation (self : {
  pname = "testpack";
  version = "1.0.2";
  sha256 = "ff3d24a755aeeb765d5e93aa0189d0d67ac96b2d84e27a29609eb4738a6cdabc";
  propagatedBuildInputs = [HUnit QuickCheck mtl];
  meta = {
    description = "Test Utility Pack for HUnit and QuickCheck";
  };
})