12 lines
381 B
Nix
12 lines
381 B
Nix
|
{xcbuild, appleDerivation, apple_sdk, ncurses, libutil-new}:
|
||
|
|
||
|
appleDerivation {
|
||
|
buildInputs = [ xcbuild apple_sdk.frameworks.IOKit ncurses libutil-new ];
|
||
|
NIX_LDFLAGS = "-lutil";
|
||
|
installPhase = ''
|
||
|
install -D Products/Release/libtop.a $out/lib/libtop.a
|
||
|
install -D Products/Release/libtop.h $out/include/libtop.h
|
||
|
install -D Products/Release/top $out/bin/top
|
||
|
'';
|
||
|
}
|