diff --git a/recipes/freetype/recipe.toml b/recipes/freetype/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..ce535b7cc4b9e9fc77b2d3c7ac1671eacf192d56
--- /dev/null
+++ b/recipes/freetype/recipe.toml
@@ -0,0 +1,9 @@
+[source]
+tar = "https://download.savannah.gnu.org/releases/freetype/freetype-2.9.1.tar.gz"
+
+[build]
+template = "configure"
+dependencies = [
+    "libpng",
+    "zlib"
+]
diff --git a/recipes/nghttp2/recipe.toml b/recipes/nghttp2/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..85d2886184d1164943e93a30c9f6f133537f5a2b
--- /dev/null
+++ b/recipes/nghttp2/recipe.toml
@@ -0,0 +1,11 @@
+[source]
+tar = "https://github.com/nghttp2/nghttp2/releases/download/v1.37.0/nghttp2-1.37.0.tar.xz"
+
+[build]
+template = "custom"
+script = """
+COOKBOOK_CONFIGURE_ARGS+=(
+    --enable-lib-only
+)
+cookbook_configure
+"""