From 93b01fe232b13e306393965f657fc5b733050b43 Mon Sep 17 00:00:00 2001 From: Coutinho de Souza Date: Thu, 16 May 2024 20:29:54 -0300 Subject: [PATCH] hareThirdParty.hare-compress: make use of hareHook --- .../hare-third-party/hare-compress/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/development/hare-third-party/hare-compress/default.nix b/pkgs/development/hare-third-party/hare-compress/default.nix index 9cd508f52ced..d9065f3bcd2c 100644 --- a/pkgs/development/hare-third-party/hare-compress/default.nix +++ b/pkgs/development/hare-third-party/hare-compress/default.nix @@ -1,7 +1,7 @@ { lib, stdenv, - hare, + hareHook, harec, fetchFromSourcehut, }: @@ -17,12 +17,9 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-sz8xPBZaUFye3HH4lkRnH52ye451e6seZXN/qvg87jE="; }; - nativeBuildInputs = [ hare ]; + nativeBuildInputs = [ hareHook ]; - makeFlags = [ - "HARECACHE=.harecache" - "PREFIX=${builtins.placeholder "out"}" - ]; + makeFlags = [ "PREFIX=${builtins.placeholder "out"}" ]; doCheck = true;