From 56f9e435d6fdccc8767b24ea4f745317d28972ef Mon Sep 17 00:00:00 2001 From: Marc Scholten Date: Fri, 2 Aug 2024 17:58:52 -0400 Subject: [PATCH] Added hspec dep to ihp-hsx --- NixSupport/haskell-packages/ihp-hsx.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NixSupport/haskell-packages/ihp-hsx.nix b/NixSupport/haskell-packages/ihp-hsx.nix index 3e1559116..4e3b3d7ef 100644 --- a/NixSupport/haskell-packages/ihp-hsx.nix +++ b/NixSupport/haskell-packages/ihp-hsx.nix @@ -12,6 +12,7 @@ , haskell-src-meta , containers , unordered-containers +, hspec }: mkDerivation { pname = "ihp-hsx"; @@ -32,6 +33,7 @@ mkDerivation { containers unordered-containers ]; + testHaskellDepends = [ hspec ]; license = lib.licenses.mit; enableLibraryForGhci = true; homepage = "https://ihp.digitallyinduced.com";