P4Runtime Mellanox driver for fabric.p4

Change-Id: I321eba750b30d2aab1a792933dbbc3d1d9740f03
diff --git a/drivers/mellanox/BUCK b/drivers/mellanox/BUCK
new file mode 100644
index 0000000..bb9bfbc
--- /dev/null
+++ b/drivers/mellanox/BUCK
@@ -0,0 +1,25 @@
+COMPILE_DEPS = [
+    '//lib:CORE_DEPS',
+    '//drivers/p4runtime:onos-drivers-p4runtime',
+]
+
+BUNDLES = [
+    ':onos-drivers-mellanox',
+]
+
+osgi_jar(
+    deps = COMPILE_DEPS,
+)
+
+onos_app(
+    app_name = 'org.onosproject.drivers.mellanox',
+    title = 'Mellanox Drivers',
+    category = 'Drivers',
+    url = 'https://wiki.onosproject.org/x/aAZkAQ',
+    description = 'Adds support for Mellanox Spectrum-based devices using P4Runtime',
+    included_bundles = BUNDLES,
+    required_apps = [
+        'org.onosproject.drivers.p4runtime',
+        'org.onosproject.pipelines.fabric',
+    ],
+)