Arduino Nano 33 BLE with adafruit bluefruit, possible?

I have a piece of code using bluefruit and I would like to run it on an Arduino Nano 33 BLE.

To test things out I started wit this very optimistic platform.ini

[env]
framework = arduino
platform = nordicnrf52
board = nano33ble

end the accordingly minimalist main.cpp

#include <Arduino.h>
#include <bluefruit.h>

void setup() {}
void loop() {}

But the compiler tells me there is more to it than that:

src/main.cpp:2:10: fatal error: bluefruit.h: No such file or directory

Build suggested I had a look over here: PlatformIO Registry but it really didn’t give much.

Can it be done without jumping through too many hoops?