haskellPackages.hspec-api: downgrade to match hspec
This commit is contained in:
parent
7f663abbc2
commit
521f6aec44
@ -44,6 +44,8 @@ default-package-overrides:
|
||||
- shake-cabal < 0.2.2.3
|
||||
# needed as long as we have pandoc < 3.0, i.e. stackage lts 20
|
||||
- pandoc-crossref < 0.3.15.0
|
||||
# Needs to match hspec which is tracked in stackage
|
||||
- hspec-api < 2.10
|
||||
|
||||
extra-packages:
|
||||
- Cabal == 2.2.* # required for jailbreak-cabal etc.
|
||||
|
@ -151497,6 +151497,19 @@ self: {
|
||||
}) {};
|
||||
|
||||
"hspec-api" = callPackage
|
||||
({ mkDerivation, base, hspec, hspec-core, hspec-discover }:
|
||||
mkDerivation {
|
||||
pname = "hspec-api";
|
||||
version = "2.9.0";
|
||||
sha256 = "0a260pjz0fyj51wpdnlb5kzrrwzdam2rxr019c5xrl14gg77a007";
|
||||
libraryHaskellDepends = [ base hspec-core ];
|
||||
testHaskellDepends = [ base hspec hspec-core ];
|
||||
testToolDepends = [ hspec-discover ];
|
||||
description = "A Testing Framework for Haskell";
|
||||
license = lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"hspec-api_2_10_0" = callPackage
|
||||
({ mkDerivation, base, hspec, hspec-core, hspec-discover }:
|
||||
mkDerivation {
|
||||
pname = "hspec-api";
|
||||
@ -151507,6 +151520,7 @@ self: {
|
||||
testToolDepends = [ hspec-discover ];
|
||||
description = "A Testing Framework for Haskell";
|
||||
license = lib.licenses.mit;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"hspec-attoparsec" = callPackage
|
||||
|
Loading…
Reference in New Issue
Block a user