From 4ca064bec94aab70cef11873f9b846b5fcad9c12 Mon Sep 17 00:00:00 2001 From: voidlizard Date: Thu, 13 Feb 2025 22:43:53 +0300 Subject: [PATCH] fixed nix build on darwin --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index c24e3018..715773c2 100644 --- a/flake.nix +++ b/flake.nix @@ -117,7 +117,8 @@ outputs = { self, nixpkgs, flake-utils, ... }@inputs: (overrideCabal (drv: { preBuild = '' export GIT_HASH="${self.rev or self.dirtyRev or "dirty"}" - ''; + ''; + disallowGhcReference = false; })) ];