mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
14 lines
376 B
Nix
14 lines
376 B
Nix
|
{ cabal, HUnit, mtl, tasty }:
|
||
|
|
||
|
cabal.mkDerivation (self: {
|
||
|
pname = "tasty-hunit";
|
||
|
version = "0.2";
|
||
|
sha256 = "1476ac3rsaag9rfgglzs65wqlkzm09xzdz47ksyj3a4c6ajba1kw";
|
||
|
buildDepends = [ HUnit mtl tasty ];
|
||
|
meta = {
|
||
|
description = "HUnit support for the Tasty test framework";
|
||
|
license = self.stdenv.lib.licenses.mit;
|
||
|
platforms = self.ghc.meta.platforms;
|
||
|
};
|
||
|
})
|