From 081396ca7dd0b7f2a8111a0f49ad9cc202923a92 Mon Sep 17 00:00:00 2001 From: Coutinho de Souza Date: Thu, 23 May 2024 12:01:57 -0300 Subject: [PATCH] hareThirdParty.hare-json: make use of hareHook --- pkgs/development/hare-third-party/hare-json/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/development/hare-third-party/hare-json/default.nix b/pkgs/development/hare-third-party/hare-json/default.nix index b66f0df3acf9..d78b384cb94b 100644 --- a/pkgs/development/hare-third-party/hare-json/default.nix +++ b/pkgs/development/hare-third-party/hare-json/default.nix @@ -1,6 +1,6 @@ { fetchFromSourcehut, - hare, + hareHook, harec, lib, stdenv, @@ -17,12 +17,9 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-Sx+RBiLhR3ftP89AwinVlBg0u0HX4GVP7TLmuofgC9s="; }; - nativeBuildInputs = [ hare ]; + nativeBuildInputs = [ hareHook ]; - makeFlags = [ - "HARECACHE=.harecache" - "PREFIX=${builtins.placeholder "out"}" - ]; + makeFlags = [ "PREFIX=${builtins.placeholder "out"}" ]; doCheck = true;