From 4a8f6f4230838a5c422070ec0226a3440d2790c1 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 18 Jan 2021 18:21:04 +0100 Subject: [PATCH] hnix-store-core: add missing test dependency by way of override See https://github.com/haskell-nix/hnix-store/issues/127. --- pkgs/development/haskell-modules/configuration-common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 2cf459bd260f..e2d17a8a69f0 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -235,6 +235,8 @@ self: super: { hnix-store-core = self.hnix-store-core_0_4_1_0; # at least 1.7 }); + # https://github.com/haskell-nix/hnix-store/issues/127 + hnix-store-core_0_4_1_0 = addTestToolDepend super.hnix-store-core_0_4_1_0 self.tasty-discover; # Fails for non-obvious reasons while attempting to use doctest. search = dontCheck super.search;