3
0
Fork 0
forked from mirrors/nixpkgs

top: add meta

This commit is contained in:
Matthew Bauer 2018-04-12 18:42:21 -05:00
parent 8287ba10fc
commit 23467e207f

View file

@ -1,4 +1,4 @@
{xcbuild, appleDerivation, apple_sdk, ncurses, libutil-new}:
{xcbuild, appleDerivation, apple_sdk, ncurses, libutil-new, lib}:
appleDerivation {
buildInputs = [ xcbuild apple_sdk.frameworks.IOKit ncurses libutil-new ];
@ -8,4 +8,8 @@ appleDerivation {
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 ];
};
}