17 lines
525 B
Nix
17 lines
525 B
Nix
|
{xcbuildHook, appleDerivation, apple_sdk, ncurses, libutil, lib}:
|
||
|
|
||
|
appleDerivation {
|
||
|
nativeBuildInputs = [ xcbuildHook ];
|
||
|
buildInputs = [ apple_sdk.frameworks.IOKit ncurses libutil ];
|
||
|
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
|
||
|
'';
|
||
|
meta = {
|
||
|
platforms = lib.platforms.darwin;
|
||
|
maintainers = with lib.maintainers; [ matthewbauer ];
|
||
|
};
|
||
|
}
|