Skip to content

Commit 10e4f4a

Browse files
committed
default.nix: use Store 0.4 form Nixpkgs
1 parent 0acf264 commit 10e4f4a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

default.nix

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,14 @@ let
230230
# See also https://github.com/NixOS/nixpkgs/pull/106333 for a temporary fix.
231231
cryptohash-sha512 = pkgs.haskell.lib.unmarkBroken ( pkgs.haskell.lib.doJailbreak super.cryptohash-sha512 );
232232

233+
# 2021-01-06: NOTE:
234+
# Core is on Stackage and pinned at `0.2`: https://github.com/haskell-nix/hnix-store/issues/104
235+
# Stackage report: https://github.com/commercialhaskell/stackage/issues/5766
236+
hnix-store-core = super.hnix-store-core_0_4_0_0;
233237
# 2020-12-07 hnix-store-remote fails when trying to connect to a real hnix daemon.
234238
# probably due to nix sandbox restrictions.
235239
# Upstream issue @ https://github.com/haskell-nix/hnix-store/issues/80
236-
hnix-store-remote = pkgs.haskell.lib.removeConfigureFlag super.hnix-store-remote "-fio-testsuite";
237-
240+
hnix-store-remote = pkgs.haskell.lib.unmarkBroken super.hnix-store-remote;
238241
};
239242

240243
modifier = drv: pkgs.haskell.lib.overrideCabal drv (attrs: {

0 commit comments

Comments
 (0)