chibi: fix darwin
add libutil as required by link step
This commit is contained in:
parent
dd59bf493c
commit
6f5203d50c
@ -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"
|
||||
'';
|
||||
|
Loading…
Reference in New Issue
Block a user