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

tasty-th: init at 0.1.7

parent 6eacda3c
Branches
No related merge requests found
...@@ -660,6 +660,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -660,6 +660,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "tasty-lua" "1.0.2" , callHackage "tasty-lua" "1.0.2"
, callHackage "tasty-silver" "3.3.1.1" , callHackage "tasty-silver" "3.3.1.1"
, callHackage "tasty-smallcheck" "0.8.2" , callHackage "tasty-smallcheck" "0.8.2"
, callHackage "tasty-th" "0.1.7"
, callHackage "tasty-quickcheck" "0.10.2" , callHackage "tasty-quickcheck" "0.10.2"
, callHackage "tasty-wai" "0.1.2.0" , callHackage "tasty-wai" "0.1.2.0"
, callHackage "temporary" "1.3" , callHackage "temporary" "1.3"
......
...@@ -973,6 +973,8 @@ self: with pkgs.haskell.lib; { ...@@ -973,6 +973,8 @@ self: with pkgs.haskell.lib; {
tasty-smallcheck = self.callPackage (./pkgs/tasty-smallcheck.nix) { }; tasty-smallcheck = self.callPackage (./pkgs/tasty-smallcheck.nix) { };
tasty-th = self.callPackage (./pkgs/tasty-th.nix) { };
tasty-wai = self.callPackage (./pkgs/tasty-wai.nix) { }; tasty-wai = self.callPackage (./pkgs/tasty-wai.nix) { };
temporary = self.callPackage (./pkgs/temporary.nix) { }; temporary = self.callPackage (./pkgs/temporary.nix) { };
......
{ mkDerivation
, base
, haskell-src-exts
, lib
, tasty
, tasty-hunit
, template-haskell
}:
mkDerivation {
pname = "tasty-th";
version = "0.1.7";
sha256 = "435aac8f317e2f8cb1aa96fb3f7c9003c1ac28e6d3ca4c3c23f5142178de512c";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
haskell-src-exts
tasty
template-haskell
];
testHaskellDepends = [ base tasty-hunit ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/bennofs/tasty-th";
description = "Automatic tasty test case discovery using TH";
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