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

test-framework: init at 0.8.2.0

parent ab84c71e
No related merge requests found
......@@ -464,6 +464,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(None Text)
(Some "hunit")
, callHackage "tasty-wai" "0.1.2.0"
, callHackage "test-framework" "0.8.2.0"
, callHackage "text-display" "0.0.3.0"
, callHackage "text-metrics" "0.3.2"
, callHackage "text-zipper" "0.12"
......
......@@ -561,6 +561,8 @@ final: prev: with pkgs.haskell.lib; {
tasty-wai = prev.callPackage (./pkgs/tasty-wai.nix) { };
test-framework = prev.callPackage (./pkgs/test-framework.nix) { };
text-display = prev.callPackage (./pkgs/text-display.nix) { };
text-metrics = prev.callPackage (./pkgs/text-metrics.nix) { };
......
{ mkDerivation
, ansi-terminal
, ansi-wl-pprint
, base
, bytestring
, containers
, hostname
, HUnit
, lib
, libxml
, old-locale
, QuickCheck
, random
, regex-posix
, semigroups
, time
, xml
}:
mkDerivation {
pname = "test-framework";
version = "0.8.2.0";
sha256 = "f5aec7a15dbcb39e951bcf6502606fd99d751197b5510f41706899aa7e660ac2";
revision = "8";
editedCabalFile = "1sal1qqvc8c1rvsqz292bniy1kr5rx6ll7z9chwsz6j2ncw5sgmg";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
ansi-terminal
ansi-wl-pprint
base
containers
hostname
old-locale
random
regex-posix
time
xml
];
testHaskellDepends = [
ansi-terminal
ansi-wl-pprint
base
bytestring
containers
hostname
HUnit
libxml
old-locale
QuickCheck
random
regex-posix
semigroups
time
xml
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://haskell.github.io/test-framework/";
description = "Framework for running and organising tests, with HUnit and QuickCheck support";
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