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

tasty-inspection-testing: init at 0.2

parent ad5166c1
No related merge requests found
...@@ -737,6 +737,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -737,6 +737,7 @@ in [ callHackage "Cabal" "3.8.1.0"
"https://github.com/UnkindPartition/tasty" "https://github.com/UnkindPartition/tasty"
(None Text) (None Text)
(Some "hunit") (Some "hunit")
, callHackage "tasty-inspection-testing" "0.2"
, callHackage "tasty-kat" "0.0.3" , callHackage "tasty-kat" "0.0.3"
, 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"
......
...@@ -1125,6 +1125,8 @@ self: with pkgs.haskell.lib; { ...@@ -1125,6 +1125,8 @@ self: with pkgs.haskell.lib; {
tasty-hunit = self.callPackage (./pkgs/tasty-hunit.nix) { }; tasty-hunit = self.callPackage (./pkgs/tasty-hunit.nix) { };
tasty-inspection-testing = self.callPackage (./pkgs/tasty-inspection-testing.nix) { };
tasty-kat = self.callPackage (./pkgs/tasty-kat.nix) { }; tasty-kat = self.callPackage (./pkgs/tasty-kat.nix) { };
tasty-lua = self.callPackage (./pkgs/tasty-lua.nix) { }; tasty-lua = self.callPackage (./pkgs/tasty-lua.nix) { };
......
{ mkDerivation
, base
, ghc
, inspection-testing
, lib
, tasty
, template-haskell
}:
mkDerivation {
pname = "tasty-inspection-testing";
version = "0.2";
sha256 = "1f8fa87b808b660c1390406c134758ae269afe9bf0682394e88ebf42ca5bbcbd";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
ghc
inspection-testing
tasty
template-haskell
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/Bodigrim/tasty-inspection-testing";
description = "Inspection testing support for tasty";
license = lib.licenses.mit;
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