hareThirdParty.hare-ev: make use of hareHook

This commit is contained in:
Coutinho de Souza 2024-05-23 20:06:10 -03:00
parent 87168b4bab
commit 03622fdd01
No known key found for this signature in database
GPG Key ID: 59081FCB8F9AABB5

View File

@ -1,6 +1,6 @@
{
fetchFromSourcehut,
hare,
hareHook,
lib,
stdenv,
unstableGitUpdater,
@ -17,12 +17,9 @@ stdenv.mkDerivation {
hash = "sha256-SXExwDZKlW/2XYzmJUhkLWj6NF/znrv3vY9V0mD5iFQ=";
};
nativeCheckInputs = [ hare ];
nativeCheckInputs = [ hareHook ];
makeFlags = [
"HARECACHE=.harecache"
"PREFIX=${builtins.placeholder "out"}"
];
makeFlags = [ "PREFIX=${builtins.placeholder "out"}" ];
doCheck = true;
@ -33,6 +30,6 @@ stdenv.mkDerivation {
homepage = "https://sr.ht/~sircmpwn/hare-ev";
license = licenses.mpl20;
maintainers = with maintainers; [ colinsane ];
inherit (hare.meta) platforms badPlatforms;
inherit (hareHook.meta) platforms badPlatforms;
};
}