Prevent custom post type from showing up in custom menus

It’s really simple, when registering the Custom Post Type use:

register_post_type( 'post_type_name', array (
...
'show_in_nav_menus' => FALSE
...
) );