chibi: fix darwin

add libutil as required by link step
This commit is contained in:
Reno Dakota 2024-10-24 07:02:16 +00:00
parent dd59bf493c
commit 6f5203d50c
No known key found for this signature in database

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, makeWrapper }:
{ lib, stdenv, fetchFromGitHub, makeWrapper, darwin }:
stdenv.mkDerivation rec {
version = "0.11";
@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ makeWrapper ];
buildInputs = lib.optional stdenv.hostPlatform.isDarwin darwin.libutil;
installPhase = ''
make install PREFIX="$out"
'';