elmPackages.elm: fix build

This commit is contained in:
Robert Hensing 2022-12-07 16:28:56 +01:00
parent 0ad12b3774
commit 0bb9486e51
3 changed files with 29 additions and 0 deletions

View file

@ -96,6 +96,7 @@ let
hspec = self.hspec_2_7_10;
hspec-core = self.hspec-core_2_7_10;
hspec-discover = self.hspec-discover_2_7_10;
hspec-meta = self.hspec-meta_2_7_8;
elm-format-test-lib = self.callPackage ./packages/elm-format-test-lib.nix {};
elm-format-markdown = self.callPackage ./packages/elm-format-markdown.nix {};

View file

@ -138,6 +138,7 @@ extra-packages:
- hspec < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6
- hspec-core < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6
- hspec-discover < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6
- hspec-meta < 2.8 # 2022-12-07: Needed for elmPackages.elm / hspec-discover
- hspec-golden == 0.1.* # 2022-04-07: Needed for elm-format
- immortal == 0.2.2.1 # required by Hasura 1.3.1, 2020-08-20
- language-docker == 11.0.0 # required by hadolint 2.12.0, 2022-11-16

View file

@ -149230,6 +149230,33 @@ self: {
license = lib.licenses.bsd3;
}) {};
"hspec-meta_2_7_8" = callPackage
({ mkDerivation, ansi-terminal, array, base, call-stack, clock
, deepseq, directory, filepath, QuickCheck, quickcheck-io, random
, setenv, stm, time, transformers
}:
mkDerivation {
pname = "hspec-meta";
version = "2.7.8";
sha256 = "0sfj0n2hy1r8ifysgbcmfdygcd7vyzr13ldkcp0l2ml337f8j0si";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ansi-terminal array base call-stack clock deepseq directory
filepath QuickCheck quickcheck-io random setenv stm time
transformers
];
executableHaskellDepends = [
ansi-terminal array base call-stack clock deepseq directory
filepath QuickCheck quickcheck-io random setenv stm time
transformers
];
description = "A version of Hspec which is used to test Hspec itself";
license = lib.licenses.mit;
hydraPlatforms = lib.platforms.none;
mainProgram = "hspec-meta-discover";
}) {};
"hspec-meta" = callPackage
({ mkDerivation, ansi-terminal, array, base, call-stack, clock
, deepseq, directory, filepath, ghc, ghc-boot-th, QuickCheck