No need to download anything if all you want to do is minimize on MS-Windows.
Just get the system handle and pass it to the MS-Windows ShowWindow() function:
::ShowWindow(window.getSystemHandle(), SW_MINIMIZE);
('window' in the above call is an sf::Window or sf::RenderWindow)
Make sure to include the MS-Windows header:
#include <windows.h>