From bc1886d23cbcbd393272c21fb6a1211befdf2cb1 Mon Sep 17 00:00:00 2001 From: Anton-Latukha Date: Sat, 23 May 2020 21:11:23 +0300 Subject: [PATCH] default.nix: dep: upd hnix-store: use it from the repository M default.nix --- default.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/default.nix b/default.nix index 96b1733c4..036b14615 100644 --- a/default.nix +++ b/default.nix @@ -60,15 +60,17 @@ }: let - hnix-store-src = pkgs.fetchFromGitHub { - owner = "haskell-nix"; - repo = "hnix-store"; - rev = "0.2.0.0"; - sha256 = "1qf5rn43d46vgqqgmwqdkjh78rfg6bcp4kypq3z7mx46sdpzvb78"; - }; + + # 2020-05-23: NOTE: Currently HNix-store needs no overlay + # hnix-store-src = pkgs.fetchFromGitHub { + # owner = "haskell-nix"; + # repo = "hnix-store"; + # rev = "0.2.0.0"; + # sha256 = "1qf5rn43d46vgqqgmwqdkjh78rfg6bcp4kypq3z7mx46sdpzvb78"; + # }; overlay = pkgs.lib.foldr pkgs.lib.composeExtensions (_: _: {}) [ - (import "${hnix-store-src}/overlay.nix") + # (import "${hnix-store-src}/overlay.nix") (self: super: with pkgs.haskell.lib; pkgs.lib.optionalAttrs withHoogle { ghc = super.ghc // { withPackages = super.ghc.withHoogle; };