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

tasty-silver: init at 3.3.1.1

parent 2653726b
No related merge requests found
...@@ -641,6 +641,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -641,6 +641,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(Some "hunit") (Some "hunit")
, 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-smallcheck" "0.8.2" , callHackage "tasty-smallcheck" "0.8.2"
, 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"
......
...@@ -935,6 +935,8 @@ self: with pkgs.haskell.lib; { ...@@ -935,6 +935,8 @@ self: with pkgs.haskell.lib; {
tasty-quickcheck = self.callPackage (./pkgs/tasty-quickcheck.nix) { }; tasty-quickcheck = self.callPackage (./pkgs/tasty-quickcheck.nix) { };
tasty-silver = self.callPackage (./pkgs/tasty-silver.nix) { };
tasty-smallcheck = self.callPackage (./pkgs/tasty-smallcheck.nix) { }; tasty-smallcheck = self.callPackage (./pkgs/tasty-smallcheck.nix) { };
tasty-wai = self.callPackage (./pkgs/tasty-wai.nix) { }; tasty-wai = self.callPackage (./pkgs/tasty-wai.nix) { };
......
{ mkDerivation
, ansi-terminal
, async
, base
, bytestring
, containers
, deepseq
, directory
, filepath
, lib
, mtl
, optparse-applicative
, process
, process-extras
, regex-tdfa
, silently
, stm
, tagged
, tasty
, tasty-hunit
, temporary
, text
, transformers
}:
mkDerivation {
pname = "tasty-silver";
version = "3.3.1.1";
sha256 = "35fde58705e5041671fd1009c1fa79823ffdd60bca326b054e5bc6c880fe408e";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
ansi-terminal
async
base
bytestring
containers
deepseq
directory
filepath
mtl
optparse-applicative
process
process-extras
regex-tdfa
silently
stm
tagged
tasty
temporary
text
transformers
];
testHaskellDepends = [
base
directory
filepath
process
silently
tasty
tasty-hunit
temporary
transformers
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/phile314/tasty-silver";
description = "A fancy test runner, including support for golden tests";
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