hareThirdParty.hare-compress: make use of hareHook

This commit is contained in:
Coutinho de Souza 2024-05-16 20:29:54 -03:00
parent 995664853d
commit 93b01fe232
No known key found for this signature in database
GPG Key ID: 59081FCB8F9AABB5

View File

@ -1,7 +1,7 @@
{ {
lib, lib,
stdenv, stdenv,
hare, hareHook,
harec, harec,
fetchFromSourcehut, fetchFromSourcehut,
}: }:
@ -17,12 +17,9 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-sz8xPBZaUFye3HH4lkRnH52ye451e6seZXN/qvg87jE="; hash = "sha256-sz8xPBZaUFye3HH4lkRnH52ye451e6seZXN/qvg87jE=";
}; };
nativeBuildInputs = [ hare ]; nativeBuildInputs = [ hareHook ];
makeFlags = [ makeFlags = [ "PREFIX=${builtins.placeholder "out"}" ];
"HARECACHE=.harecache"
"PREFIX=${builtins.placeholder "out"}"
];
doCheck = true; doCheck = true;