Skip to content
Snippets Groups Projects
Commit 2f137ed9 authored by Daniel Firth's avatar Daniel Firth
Browse files

test-framework-hunit: init at 0.3.0.2

parent e2055454
Branches
Tags
No related merge requests found
...@@ -466,6 +466,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -466,6 +466,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(Some "hunit") (Some "hunit")
, callHackage "tasty-wai" "0.1.2.0" , callHackage "tasty-wai" "0.1.2.0"
, callHackage "test-framework" "0.8.2.0" , callHackage "test-framework" "0.8.2.0"
, callHackage "test-framework-hunit" "0.3.0.2"
, callHackage "text-display" "0.0.3.0" , callHackage "text-display" "0.0.3.0"
, callHackage "text-metrics" "0.3.2" , callHackage "text-metrics" "0.3.2"
, callHackage "text-zipper" "0.12" , callHackage "text-zipper" "0.12"
......
...@@ -565,6 +565,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -565,6 +565,8 @@ final: prev: with pkgs.haskell.lib; {
test-framework = prev.callPackage (./pkgs/test-framework.nix) { }; test-framework = prev.callPackage (./pkgs/test-framework.nix) { };
test-framework-hunit = prev.callPackage (./pkgs/test-framework-hunit.nix) { };
text-display = prev.callPackage (./pkgs/text-display.nix) { }; text-display = prev.callPackage (./pkgs/text-display.nix) { };
text-metrics = prev.callPackage (./pkgs/text-metrics.nix) { }; text-metrics = prev.callPackage (./pkgs/text-metrics.nix) { };
......
{ mkDerivation
, base
, extensible-exceptions
, HUnit
, lib
, test-framework
}:
mkDerivation {
pname = "test-framework-hunit";
version = "0.3.0.2";
sha256 = "95cb8ee02a850b164bfdabdf4dbc839d621361f3ac770ad21ea43a8bde360bf8";
revision = "3";
editedCabalFile = "0i9mlalv7cl1iq43ld5myrnpszq5rxmd79hk495dcb08rglhgl3z";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
extensible-exceptions
HUnit
test-framework
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://batterseapower.github.io/test-framework/";
description = "HUnit support for the test-framework package";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment