summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2021-01-18 18:21:04 +0100
committerPeter Simons <simons@cryp.to>2021-01-22 20:34:21 +0100
commit4a8f6f4230838a5c422070ec0226a3440d2790c1 (patch)
treec1223daa0c25c470aa9596cb1ed8a4c2100448c3 /pkgs
parentde00ad9932876f5d51c4f6e86f46a1b477c7af92 (diff)
hnix-store-core: add missing test dependency by way of override
See https://github.com/haskell-nix/hnix-store/issues/127.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix2
1 files changed, 2 insertions, 0 deletions
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;