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

tasty-expected-failure: init at 0.12.3

parent 6efad4ef
Branches
Tags
No related merge requests found
......@@ -535,6 +535,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(None Text)
(Some "core")
, callHackage "tasty-discover" "5.0.0"
, callHackage "tasty-expected-failure" "0.12.3"
, callCabal2nix
"tasty-hedgehog"
"https://github.com/locallycompact/tasty-hedgehog"
......
......@@ -717,6 +717,8 @@ final: prev: with pkgs.haskell.lib; {
tasty-discover = prev.callPackage (./pkgs/tasty-discover.nix) { };
tasty-expected-failure = prev.callPackage (./pkgs/tasty-expected-failure.nix) { };
tasty-golden = prev.callPackage (./pkgs/tasty-golden.nix) { };
tasty-hedgehog = prev.callPackage (./pkgs/tasty-hedgehog.nix) { };
......
{ mkDerivation
, base
, hedgehog
, lib
, tagged
, tasty
, tasty-golden
, tasty-hedgehog
, tasty-hunit
, unbounded-delays
}:
mkDerivation {
pname = "tasty-expected-failure";
version = "0.12.3";
sha256 = "cb07cc5ca62a6fd673ef54ae70b4bc5f9c12662fe835bea1f38b944684ee8f7e";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base tagged tasty unbounded-delays ];
testHaskellDepends = [
base
hedgehog
tasty
tasty-golden
tasty-hedgehog
tasty-hunit
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/nomeata/tasty-expected-failure";
description = "Mark tasty tests as failure expected";
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