2019-02-07 01:13:51 +00:00
|
|
|
{xcbuildHook, appleDerivation, apple_sdk, ncurses, libutil, lib}:
|
2018-04-13 00:27:11 +01:00
|
|
|
|
|
|
|
appleDerivation {
|
2018-07-06 23:53:50 +01:00
|
|
|
nativeBuildInputs = [ xcbuildHook ];
|
2019-02-07 01:13:51 +00:00
|
|
|
buildInputs = [ apple_sdk.frameworks.IOKit ncurses libutil ];
|
2018-04-13 00:27:11 +01:00
|
|
|
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
|
|
|
|
'';
|
2018-04-13 00:42:21 +01:00
|
|
|
meta = {
|
|
|
|
platforms = lib.platforms.darwin;
|
|
|
|
maintainers = with lib.maintainers; [ matthewbauer ];
|
|
|
|
};
|
2018-04-13 00:27:11 +01:00
|
|
|
}
|