diff --git a/recipes/orbterm/recipe.toml b/recipes/orbterm/recipe.toml
index 0caa665dd272ebc21bfa420419291cb87b1e7d9c..16c3cdfb560ac764fab18692f07cddf169d28431 100644
--- a/recipes/orbterm/recipe.toml
+++ b/recipes/orbterm/recipe.toml
@@ -10,3 +10,8 @@ COOKBOOK_CARGO_FLAGS=(
 )
 cookbook_cargo
 """
+
+[package]
+depends = [
+    "orbital"
+]
diff --git a/recipes/orbutils/recipe.toml b/recipes/orbutils/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..135a66ec277dbe80b1c810fb0849bd11cc0f23ab
--- /dev/null
+++ b/recipes/orbutils/recipe.toml
@@ -0,0 +1,17 @@
+[source]
+git = "https://gitlab.redox-os.org/redox-os/orbutils.git"
+
+[build]
+template = "custom"
+script = """
+COOKBOOK_CARGO_FLAGS=(
+    --path "${COOKBOOK_SOURCE}"
+    --root "${COOKBOOK_STAGE}/ui"
+)
+cookbook_cargo
+"""
+
+[package]
+depends = [
+    "orbital"
+]